Merge pull request #307 from davedoesdev/davedoesdev-log-fix

Don't import tuf.log in __init__.py so importing tuf.conf doesn't start logging
This commit is contained in:
Vladimir Diaz 2016-01-20 10:33:22 -05:00
commit 84fed901e3

View file

@ -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']