mirror of
https://github.com/clinton-hall/nzbToMedia.git
synced 2025-07-16 02:02:53 -07:00
fix no section error. fixes #265
This commit is contained in:
parent
ff41f484a2
commit
2e07294c4f
1 changed files with 1 additions and 1 deletions
|
@ -105,7 +105,7 @@ def processEpisode(dirName, nzbName=None, failed=False, clientAgent=None, inputC
|
|||
except (ConfigParser.NoOptionError, ValueError):
|
||||
SampleIDs = ['sample','-s.']
|
||||
try:
|
||||
nzbExtractionBy = config.get("section", "nzbExtractionBy")
|
||||
nzbExtractionBy = config.get(section, "nzbExtractionBy")
|
||||
except (ConfigParser.NoOptionError, ValueError):
|
||||
nzbExtractionBy = "Downloader"
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue