mirror of
https://github.com/Card-Forge/forge.git
synced 2025-11-17 11:18:01 +00:00
strip out spaces in filenames
This commit is contained in:
@@ -90,7 +90,7 @@ for currentSet in setCodes :
|
|||||||
currentMissing.sort()
|
currentMissing.sort()
|
||||||
currentImplemented.sort()
|
currentImplemented.sort()
|
||||||
|
|
||||||
with open(sys.path[0] + os.sep + "PerSetTrackingResults" + os.sep + "set_" + currentSet + ".txt", "w") as output :
|
with open(sys.path[0] + os.sep + "PerSetTrackingResults" + os.sep + "set_" + currentSet.strip() + ".txt", "w") as output :
|
||||||
output.write("Implemented (" + str(len(currentImplemented)) + "):\n")
|
output.write("Implemented (" + str(len(currentImplemented)) + "):\n")
|
||||||
for everyImplemented in currentImplemented :
|
for everyImplemented in currentImplemented :
|
||||||
output.write(everyImplemented + '\n')
|
output.write(everyImplemented + '\n')
|
||||||
|
|||||||
Reference in New Issue
Block a user