summaryrefslogtreecommitdiffstats
path: root/deluge/ui/client.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/ui/client.py
parent1ca08ccf95f79494c1ac01326e73671a7a022f80 (diff)
downloaddeluge-b5dcfc6f9e0b3397ceab3bec354fdc94b48b27ef.tar.gz
deluge-b5dcfc6f9e0b3397ceab3bec354fdc94b48b27ef.tar.bz2
deluge-b5dcfc6f9e0b3397ceab3bec354fdc94b48b27ef.zip
Sort/prettify imports with isort
Diffstat (limited to 'deluge/ui/client.py')
-rw-r--r--deluge/ui/client.py7
1 files changed, 4 insertions, 3 deletions
diff --git a/deluge/ui/client.py b/deluge/ui/client.py
index f858b4b96..9472e0349 100644
--- a/deluge/ui/client.py
+++ b/deluge/ui/client.py
@@ -35,10 +35,11 @@
#
import logging
-from twisted.internet.protocol import ClientFactory
-from twisted.internet import reactor, ssl, defer
-import sys
import subprocess
+import sys
+
+from twisted.internet import defer, reactor, ssl
+from twisted.internet.protocol import ClientFactory
import deluge.common
from deluge import error