mirror of
https://github.com/clinton-hall/nzbToMedia.git
synced 2025-08-19 21:03:14 -07:00
correct read of fork variable.
This commit is contained in:
parent
7f51f15d8c
commit
8e0e3de851
1 changed files with 2 additions and 2 deletions
|
@ -94,8 +94,8 @@ def processEpisode(dirName, nzbName=None, failed=False):
|
||||||
watch_dir = ""
|
watch_dir = ""
|
||||||
|
|
||||||
try:
|
try:
|
||||||
fork = int(config.get("SickBeard", "fork"))
|
fork = config.get("SickBeard", "fork")
|
||||||
except (ConfigParser.NoOptionError, ValueError):
|
except ConfigParser.NoOptionError:
|
||||||
fork = "default"
|
fork = "default"
|
||||||
|
|
||||||
try:
|
try:
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue