From 37ab11899dc1c382893796132e09502fb532e31c Mon Sep 17 00:00:00 2001 From: Johan Kiviniemi Date: Wed, 25 Dec 2013 06:14:01 +0200 Subject: [PATCH] test_all: import logging --- test/test_all.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/test/test_all.py b/test/test_all.py index 21ae591..5905bab 100644 --- a/test/test_all.py +++ b/test/test_all.py @@ -2,7 +2,7 @@ import unittest # For convenience -import sys,os +import sys,os,logging sys.path.insert(0, os.getcwd()) sys.path.insert(0, os.path.join(os.getcwd(), os.pardir)) @@ -15,7 +15,6 @@ from test_cache import TestLRU # DISABLE THIS BLOCK TO GET LOG OUTPUT FROM TILESET FOR DEBUGGING if 0: - import logging root = logging.getLogger() class NullHandler(logging.Handler): def handle(self, record):