Skip to content

Commit

Permalink
FIx typo
Browse files Browse the repository at this point in the history
Was padding values to 11 not 10.
  • Loading branch information
labrys authored and fernandog committed May 7, 2016
1 parent 3584a1f commit 0bf0cb0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion sickbeard/providers/newznab.py
Original file line number Diff line number Diff line change
Expand Up @@ -244,7 +244,7 @@ def _make_provider(config):
try:
values = config.split('|')
# Pad values with None for each missing value
values.extend([None for x in range(len(values), 11)])
values.extend([None for x in range(len(values), 10)])

(name, url, key, category_ids, enabled,
search_mode, search_fallback,
Expand Down

0 comments on commit 0bf0cb0

Please sign in to comment.