diff options
author | Walter Purcaro <vuolter@users.noreply.github.com> | 2015-05-01 18:11:25 +0200 |
---|---|---|
committer | Walter Purcaro <vuolter@users.noreply.github.com> | 2015-05-01 18:11:25 +0200 |
commit | c126f738bd5be581d5321521eedc9b14a8165a0e (patch) | |
tree | 418989bfa81bfd30085f09102df53f6f58b00f14 /pyload/plugin/addon/IRCInterface.py | |
parent | Use 'import' instead 'from' (1) (diff) | |
download | pyload-c126f738bd5be581d5321521eedc9b14a8165a0e.tar.xz |
Use 'import' instead 'from' (2)
Diffstat (limited to 'pyload/plugin/addon/IRCInterface.py')
-rw-r--r-- | pyload/plugin/addon/IRCInterface.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/pyload/plugin/addon/IRCInterface.py b/pyload/plugin/addon/IRCInterface.py index 051d30aa9..3cf21b409 100644 --- a/pyload/plugin/addon/IRCInterface.py +++ b/pyload/plugin/addon/IRCInterface.py @@ -1,14 +1,14 @@ # -*- coding: utf-8 -*- -import pycurl import re import socket import ssl import time import traceback +import pycurl + from select import select -from threading import Thread from pyload.api import PackageDoesNotExists, FileDoesNotExists from pyload.network.RequestFactory import getURL |