Browse Source

First start improvements

pull/1026/head
Ruud 13 years ago
parent
commit
a22bd4abd4
  1. 2
      couchpotato/core/plugins/searcher/__init__.py
  2. 1
      couchpotato/core/plugins/status/main.py

2
couchpotato/core/plugins/searcher/__init__.py

@ -35,7 +35,7 @@ config = [{
'name': 'preferred_method', 'name': 'preferred_method',
'label': 'First search', 'label': 'First search',
'description': 'Which of the methods do you prefer', 'description': 'Which of the methods do you prefer',
'default': 'nzb', 'default': 'both',
'type': 'dropdown', 'type': 'dropdown',
'values': [('usenet & torrents', 'both'), ('usenet', 'nzb'), ('torrents', 'torrent')], 'values': [('usenet & torrents', 'both'), ('usenet', 'nzb'), ('torrents', 'torrent')],
}, },

1
couchpotato/core/plugins/status/main.py

@ -22,6 +22,7 @@ class StatusPlugin(Plugin):
'failed': 'Failed', 'failed': 'Failed',
'deleted': 'Deleted', 'deleted': 'Deleted',
'ignored': 'Ignored', 'ignored': 'Ignored',
'available': 'Available',
} }
def __init__(self): def __init__(self):

Loading…
Cancel
Save