diff options
author | stickell <l.stickell@yahoo.it> | 2015-02-04 11:10:09 +0100 |
---|---|---|
committer | stickell <l.stickell@yahoo.it> | 2015-02-04 11:10:09 +0100 |
commit | fa4df27a217171be99b9f0903768f30ee7c1298e (patch) | |
tree | 88046dc74a69f6617940ac688b66dc93867c05f4 /module/plugins/hoster/GoogledriveCom.py | |
parent | [GoogledriveCom] Cleanup (diff) | |
download | pyload-fa4df27a217171be99b9f0903768f30ee7c1298e.tar.xz |
[GoogledriveCom] Fixed syntax error
Diffstat (limited to 'module/plugins/hoster/GoogledriveCom.py')
-rw-r--r-- | module/plugins/hoster/GoogledriveCom.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/module/plugins/hoster/GoogledriveCom.py b/module/plugins/hoster/GoogledriveCom.py index 1feb8132e..1fcdf8ff0 100644 --- a/module/plugins/hoster/GoogledriveCom.py +++ b/module/plugins/hoster/GoogledriveCom.py @@ -12,7 +12,7 @@ from module.utils import html_unescape class GoogledriveCom(SimpleHoster): __name__ = "GoogledriveCom" __type__ = "hoster" - __version__ = "0.01" + __version__ = "0.02" __pattern__ = r'https?://(?:www\.)?drive\.google\.com/file/.+' @@ -40,7 +40,7 @@ class GoogledriveCom(SimpleHoster): self.error(_("Hop #1 not found")) else: - self.logDebug("Next hop: %s" % link1)) + self.logDebug("Next hop: %s" % link1) self.html = self.load(link1).decode('unicode-escape') |