Downloaded isEnabled error

This commit is contained in:
Ruud
2012-04-25 20:50:05 +02:00
parent 442e223399
commit 5eb59636e9
+1 -1
View File
@@ -45,4 +45,4 @@ class Downloader(Plugin):
return not self.isEnabled(manual)
def isEnabled(self, manual):
return super(Downloader, self).isEnabled(), ((self.conf('manual', default = False) and manual) or manual is True)
return super(Downloader, self).isEnabled() and ((self.conf('manual', default = False) and manual) or manual is True)