mirror of
https://github.com/zeldaret/oot.git
synced 2024-11-14 21:40:03 +00:00
Fix extract_assets.py -s modification check (#1978)
This commit is contained in:
parent
1b0e35c89a
commit
93b687e43f
1 changed files with 3 additions and 3 deletions
|
@ -149,9 +149,9 @@ def main():
|
|||
|
||||
initializeWorker(versionConfig, mainAbort, args.unaccounted, extractedAssetsTracker, manager)
|
||||
# Always extract if -s is used.
|
||||
fullPath = assetConfig.xml_path
|
||||
if fullPath in extractedAssetsTracker:
|
||||
del extractedAssetsTracker[fullPath]
|
||||
xml_path_str = str(assetConfig.xml_path)
|
||||
if xml_path_str in extractedAssetsTracker:
|
||||
del extractedAssetsTracker[xml_path_str]
|
||||
ExtractFunc(assetConfig)
|
||||
else:
|
||||
class CannotMultiprocessError(Exception):
|
||||
|
|
Loading…
Reference in a new issue