Skip to content
This repository was archived by the owner on May 22, 2025. It is now read-only.

Commit cbf2af8

Browse files
authored
Support for xz files, part 1
1 parent 3fc030a commit cbf2af8

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

yogsite/modules/rounds/log_parsing.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,8 @@ def find_demo_file(self):
5757

5858
if "demo.txt.gz" in files:
5959
return os.path.join(directory, "demo.txt.gz")
60-
60+
elif "demo.txt.xz" in files:
61+
return os.path.join(directory, "demo.txt.xz")
6162
elif "demo.txt" in files:
6263
return os.path.join(directory, "demo.txt")
6364

0 commit comments

Comments
 (0)