diff options
author | GammaC0de <GammaC0de@users.noreply.github.com> | 2015-09-22 00:57:37 +0200 |
---|---|---|
committer | GammaC0de <GammaC0de@users.noreply.github.com> | 2015-09-22 00:57:37 +0200 |
commit | 553538287293b8a52eee41f28d57d0b4ae1003aa (patch) | |
tree | 2b46821bd04940f8f19f747979437566ea9112e8 /module/plugins/internal | |
parent | Auto-detect seconds_to_midnight (diff) | |
download | pyload-553538287293b8a52eee41f28d57d0b4ae1003aa.tar.xz |
[Plugin] fix missing import
Diffstat (limited to 'module/plugins/internal')
-rw-r--r-- | module/plugins/internal/Plugin.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/module/plugins/internal/Plugin.py b/module/plugins/internal/Plugin.py index b651079c2..47648e2fb 100644 --- a/module/plugins/internal/Plugin.py +++ b/module/plugins/internal/Plugin.py @@ -9,6 +9,7 @@ import re import sys import traceback import urllib +import urlparse if os.name != "nt": import grp @@ -172,7 +173,7 @@ def chunks(iterable, size): class Plugin(object): __name__ = "Plugin" __type__ = "plugin" - __version__ = "0.35" + __version__ = "0.36" __status__ = "testing" __pattern__ = r'^unmatchable$' |