Merge pull request #4322 from sliptonic/miscbugs

[Path] fix index bug in toolbit directory creation
This commit is contained in:
sliptonic
2021-01-27 10:28:27 -06:00
committed by GitHub

View File

@@ -87,7 +87,7 @@ def checkWorkingDir():
subdirlist = ['Bit', 'Library', 'Shape']
mode = 0o777
for dir in subdirlist:
for dir in subdirlist.copy():
subdir = "{}{}{}".format(workingdir, os.path.sep, dir)
if os.path.exists(subdir):
subdirlist.remove(dir)