diff options
| author | 2014-10-27 23:15:36 +0100 | |
|---|---|---|
| committer | 2014-10-27 23:15:36 +0100 | |
| commit | c6c902698bb62f845e7be3156ec6b62d74200fec (patch) | |
| tree | bc9af05526b95f303ce4cb597b47149041e9975e /module | |
| parent | [XFSPAccount] Improve VALID_UNTIL_PATTERN (diff) | |
| download | pyload-c6c902698bb62f845e7be3156ec6b62d74200fec.tar.xz | |
[XFSPAccount] Fix missing gmtime import
Diffstat (limited to 'module')
| -rw-r--r-- | module/plugins/internal/XFSPAccount.py | 4 | 
1 files changed, 2 insertions, 2 deletions
diff --git a/module/plugins/internal/XFSPAccount.py b/module/plugins/internal/XFSPAccount.py index 7b6215653..ec62e5c1e 100644 --- a/module/plugins/internal/XFSPAccount.py +++ b/module/plugins/internal/XFSPAccount.py @@ -3,7 +3,7 @@  import re  from urlparse import urljoin -from time import mktime, strptime +from time import gmtime, mktime, strptime  from module.plugins.Account import Account  from module.plugins.internal.SimpleHoster import parseHtmlForm, set_cookies @@ -12,7 +12,7 @@ from module.plugins.internal.SimpleHoster import parseHtmlForm, set_cookies  class XFSPAccount(Account):      __name__    = "XFSPAccount"      __type__    = "account" -    __version__ = "0.18" +    __version__ = "0.19"      __description__ = """XFileSharingPro account plugin"""      __license__     = "GPLv3"  | 
