summaryrefslogtreecommitdiffstats
path: root/deluge/log.py
diff options
context:
space:
mode:
authorCalum Lind <calumlind+deluge@gmail.com>2014-09-03 18:18:29 +0100
committerCalum Lind <calumlind+deluge@gmail.com>2014-09-03 18:27:32 +0100
commitb5dcfc6f9e0b3397ceab3bec354fdc94b48b27ef (patch)
treec24ce802fe75af4e0ffac48a8dddbd66648bae1d /deluge/log.py
parent1ca08ccf95f79494c1ac01326e73671a7a022f80 (diff)
downloaddeluge-b5dcfc6f9e0b3397ceab3bec354fdc94b48b27ef.tar.gz
deluge-b5dcfc6f9e0b3397ceab3bec354fdc94b48b27ef.tar.bz2
deluge-b5dcfc6f9e0b3397ceab3bec354fdc94b48b27ef.zip
Sort/prettify imports with isort
Diffstat (limited to 'deluge/log.py')
-rw-r--r--deluge/log.py6
1 files changed, 4 insertions, 2 deletions
diff --git a/deluge/log.py b/deluge/log.py
index b66a6fa2e..5bc13d1b8 100644
--- a/deluge/log.py
+++ b/deluge/log.py
@@ -36,13 +36,15 @@
"""Logging functions"""
-import os
import inspect
import logging
-from deluge import common
+import os
+
from twisted.internet import defer
from twisted.python.log import PythonLoggingObserver
+from deluge import common
+
__all__ = ["setupLogger", "setLoggerLevel", "getPluginLogger", "LOG"]
LoggingLoggerClass = logging.getLoggerClass()