mirror of
https://github.com/ciromattia/kcc
synced 2025-12-12 17:26:23 +00:00
fix comicinfo detection in corner case (9.3.4 regression) (#1185)
This commit is contained in:
@@ -905,7 +905,9 @@ def getWorkFolder(afile):
|
|||||||
os.path.join(fullPath, tdir[0], 'ComicInfo.xml')
|
os.path.join(fullPath, tdir[0], 'ComicInfo.xml')
|
||||||
)
|
)
|
||||||
if len(tdir) == 1 and os.path.isdir(os.path.join(fullPath, tdir[0])):
|
if len(tdir) == 1 and os.path.isdir(os.path.join(fullPath, tdir[0])):
|
||||||
path = os.path.join(fullPath, tdir[0])
|
for file in os.listdir(os.path.join(fullPath, tdir[0])):
|
||||||
|
move(os.path.join(fullPath, tdir[0], file), fullPath)
|
||||||
|
os.rmdir(os.path.join(fullPath, tdir[0]))
|
||||||
return workdir
|
return workdir
|
||||||
|
|
||||||
except OSError as e:
|
except OSError as e:
|
||||||
|
|||||||
Reference in New Issue
Block a user