diff options
author | Walter Purcaro <vuolter@users.noreply.github.com> | 2015-06-09 04:19:32 +0200 |
---|---|---|
committer | Walter Purcaro <vuolter@users.noreply.github.com> | 2015-06-09 04:19:32 +0200 |
commit | c9bae62b1cd55217d2cb7b690fc5c3c67fbabaec (patch) | |
tree | 13c915f9e70d0768d67316051bbab63d67ef4a9a | |
parent | Merge pull request #1469 from frederikmoellers/stable (diff) | |
download | pyload-c9bae62b1cd55217d2cb7b690fc5c3c67fbabaec.tar.xz |
[SimpleHoster] Fixup (3)
-rw-r--r-- | module/plugins/internal/SimpleHoster.py | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/module/plugins/internal/SimpleHoster.py b/module/plugins/internal/SimpleHoster.py index 2454a5072..3d4733790 100644 --- a/module/plugins/internal/SimpleHoster.py +++ b/module/plugins/internal/SimpleHoster.py @@ -1,5 +1,7 @@ # -*- coding: utf-8 -*- +from __future__ import with_statement + import datetime import mimetypes import os @@ -239,7 +241,7 @@ def secondsToMidnight(gmt=0): class SimpleHoster(Hoster): __name__ = "SimpleHoster" __type__ = "hoster" - __version__ = "1.64" + __version__ = "1.65" __pattern__ = r'^unmatchable$' __config__ = [("use_premium", "bool", "Use premium account if available" , True), |