From 08bd4584d87e98fe693e07309f0e1bb9ee83b56a Mon Sep 17 00:00:00 2001 From: echel0n Date: Mon, 31 Mar 2014 02:58:58 -0700 Subject: [PATCH] Changed autoFork to default to auto-detection if it fails to properly get the config value for fork or one is not set --- autoProcess/autoSickBeardFork.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/autoProcess/autoSickBeardFork.py b/autoProcess/autoSickBeardFork.py index f4d6d18c..56260579 100644 --- a/autoProcess/autoSickBeardFork.py +++ b/autoProcess/autoSickBeardFork.py @@ -51,7 +51,7 @@ def autoFork(fork=None): try: fork = forks.items()[forks.keys().index(config.get(section, "fork"))] except: - fork = forks.items()[forks.keys().index(fork_default)] + fork = "auto" myOpener = AuthURLOpener(username, password)