From 394a9b9f0404014f42090495c87520d23aff204a Mon Sep 17 00:00:00 2001 From: Walter Purcaro Date: Mon, 10 Nov 2014 01:27:47 +0100 Subject: [Plugin] Fix typo (thx clinton-hall) --- module/plugins/Plugin.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'module') 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) -- cgit v1.2.3