Skip to content

Commit

Permalink
Make generate_config_bundle.py more consistent
Browse files Browse the repository at this point in the history
  • Loading branch information
suchmememanyskill committed Jan 7, 2024
1 parent 97cbae7 commit 17c08ff
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion generate_config_bundle.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
fp = open("PrusaSlicer_config_bundle.ini", "w")
fp.write("# generated by https://github.com/suchmememanyskill/PrusaSlicer-Ender3-v3-SE-Config on " + datetime.datetime.utcnow().strftime("%Y-%m-%d at %H:%M:%S UTC") + "\n\n")

for x in os.listdir("PrusaSlicer"):
for x in ['print', 'filament', 'printer']:
dirPath = os.path.join("PrusaSlicer", x)
if os.path.isdir(dirPath):
for y in os.listdir(dirPath):
Expand Down

0 comments on commit 17c08ff

Please sign in to comment.