mirror of
https://github.com/clinton-hall/nzbToMedia.git
synced 2025-07-06 05:01:10 -07:00
add img files to transcoder extraction list. Fixes #809
This commit is contained in:
parent
eef278d22f
commit
c0cc0a41ee
1 changed files with 1 additions and 1 deletions
|
@ -557,7 +557,7 @@ def processList(List, newDir, bitbucket):
|
|||
for item in List:
|
||||
newfile = None
|
||||
ext = os.path.splitext(item)[1].lower()
|
||||
if ext in ['.iso', '.bin'] and not ext in core.IGNOREEXTENSIONS:
|
||||
if ext in ['.iso', '.bin', '.img'] and not ext in core.IGNOREEXTENSIONS:
|
||||
logger.debug("Attempting to rip disk image: %s" % (item), "TRANSCODER")
|
||||
newList.extend(ripISO(item, newDir, bitbucket))
|
||||
remList.append(item)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue