Skip to content

Commit

Permalink
Fixed issue where I swapped the label and dir.
Browse files Browse the repository at this point in the history
Signed-off-by: Rob Bruce <rob.bruce70@gmail.com>
  • Loading branch information
dny238 committed Aug 24, 2010
1 parent 99e6197 commit 7536067
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions sickbeard/webserve.py
Expand Up @@ -690,8 +690,8 @@ def saveEpisodeDownloads(self, nzb_dir=None, sab_username=None, sab_password=Non
if usenet_retention == None:
usenet_retention = 200

sickbeard.ROOT_DIR_LABELS = [x for x in root_dirs.split('|') if x]
sickbeard.ROOT_DIR_PATHS = [x for x in root_labels.split('|') if x]
sickbeard.ROOT_DIR_LABELS = [x for x in root_labels.split('|') if x]
sickbeard.ROOT_DIR_PATHS = [x for x in root_dirs.split('|') if x]

sickbeard.PROCESS_AUTOMATICALLY = process_automatically
sickbeard.KEEP_PROCESSED_DIR = keep_processed_dir
Expand Down

0 comments on commit 7536067

Please sign in to comment.