Browse Source

Manual download fix

pull/152/head
Ruud 13 years ago
parent
commit
ee3c8d7110
  1. 3
      couchpotato/core/downloaders/base.py

3
couchpotato/core/downloaders/base.py

@ -45,4 +45,5 @@ class Downloader(Plugin):
return not self.isEnabled(manual)
def isEnabled(self, manual):
return super(Downloader, self).isEnabled() and ((self.conf('manual', default = False) and manual) or manual is True)
d_manual = self.conf('manual', default = False)
return super(Downloader, self).isEnabled() and ((d_manual and manual) or (d_manual is False))

Loading…
Cancel
Save