From c0cc0a41eed2758275c56112a82311ed3ffd9b11 Mon Sep 17 00:00:00 2001 From: clinton-hall Date: Mon, 17 Aug 2015 22:20:55 +0930 Subject: [PATCH] add img files to transcoder extraction list. Fixes #809 --- core/transcoder/transcoder.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/transcoder/transcoder.py b/core/transcoder/transcoder.py index e06a5aa2..51d789cf 100644 --- a/core/transcoder/transcoder.py +++ b/core/transcoder/transcoder.py @@ -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)