From 1c51b8d732d553e87a3b4555b369294c75f2389e Mon Sep 17 00:00:00 2001 From: David Halls Date: Tue, 19 Jan 2016 07:12:07 +0000 Subject: [PATCH] Don't import tuf.log in __init__.py so importing tuf.conf doesn't start logging --- tuf/__init__.py | 6 ------ 1 file changed, 6 deletions(-) diff --git a/tuf/__init__.py b/tuf/__init__.py index 4add6e45..b3abc8a2 100755 --- a/tuf/__init__.py +++ b/tuf/__init__.py @@ -28,14 +28,8 @@ from __future__ import division from __future__ import unicode_literals -import logging - -import tuf.log - import six -logging = logging.getLogger('tuf.__init__') - # Import 'tuf.formats' if a module tries to import the # entire tuf package (i.e., from tuf import *). __all__ = ['formats']