summaryrefslogtreecommitdiffstats
path: root/module/plugins/Plugin.py
diff options
context:
space:
mode:
authorGravatar Walter Purcaro <vuolter@gmail.com> 2014-11-10 01:27:47 +0100
committerGravatar Walter Purcaro <vuolter@gmail.com> 2014-11-10 01:27:47 +0100
commit394a9b9f0404014f42090495c87520d23aff204a (patch)
treeda914938e73a0be6fe832113f4cac1dd608f5e07 /module/plugins/Plugin.py
parent[ZippyshareCom] Update patterns (diff)
downloadpyload-394a9b9f0404014f42090495c87520d23aff204a.tar.xz
[Plugin] Fix typo (thx clinton-hall)
Diffstat (limited to 'module/plugins/Plugin.py')
-rw-r--r--module/plugins/Plugin.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/module/plugins/Plugin.py b/module/plugins/Plugin.py
index f296533e1..d21bbb196 100644
--- a/module/plugins/Plugin.py
+++ b/module/plugins/Plugin.py
@@ -151,7 +151,7 @@ class Plugin(Base):
"""
__name__ = "Plugin"
__type__ = "hoster"
- __version__ = "0.06"
+ __version__ = "0.07"
__pattern__ = None
__config__ = [] #: [("name", "type", "desc", "default")]
@@ -492,7 +492,7 @@ class Plugin(Base):
self.abort()
if not url:
- self.fail(_"No url given"))
+ self.fail(_("No url given"))
if type(url) == unicode: # utf8 vs decode -> please use decode attribute in all future plugins
url = str(url) #: encode('utf8')
@@ -558,7 +558,7 @@ class Plugin(Base):
self.abort()
if not url:
- self.fail(_"No url given"))
+ self.fail(_("No url given"))
if type(url) == unicode:
url = str(url)