diff options
author | Tristan Williams <tgwil@tgwil.net> | 2025-03-30 14:33:51 -0400 |
---|---|---|
committer | Tristan Williams <tgwil@tgwil.net> | 2025-03-30 14:33:51 -0400 |
commit | a7c2e190ea1a44046b7c94ec33dc6d5f06151bb9 (patch) | |
tree | 7638e19d6ee9b7a3d28e2befe5682fe92e43bb23 | |
parent | Did I mention I need to start testing BEFORE commit? (diff) | |
download | sortashuffle-a7c2e190ea1a44046b7c94ec33dc6d5f06151bb9.tar.gz sortashuffle-a7c2e190ea1a44046b7c94ec33dc6d5f06151bb9.tar.bz2 sortashuffle-a7c2e190ea1a44046b7c94ec33dc6d5f06151bb9.zip |
Okay I actually tested it this time and it works
-rw-r--r-- | sortashuffle.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sortashuffle.py b/sortashuffle.py index 806f2a4..ea03ff7 100644 --- a/sortashuffle.py +++ b/sortashuffle.py | |||
@@ -58,7 +58,7 @@ def deploy_index(shuffled): | |||
58 | index = open(TARGET + "//" + "_PLAYLIST_INDEX.txt", 'w', encoding='utf-8') | 58 | index = open(TARGET + "//" + "_PLAYLIST_INDEX.txt", 'w', encoding='utf-8') |
59 | index.write("\n".join(shuffled)) | 59 | index.write("\n".join(shuffled)) |
60 | index.close() | 60 | index.close() |
61 | return INDEX | 61 | return index |
62 | 62 | ||
63 | def main(): | 63 | def main(): |
64 | SHOWLIST = collect_showlist(SOURCES) | 64 | SHOWLIST = collect_showlist(SOURCES) |