fix: allow uppercase gbx ending

This commit is contained in:
2023-11-24 20:30:10 +01:00
parent 9e92b8855d
commit 88ef45aa1b

View File

@@ -234,7 +234,7 @@ class DataTable():
def replay_from_path(fullpath, uploader=None): def replay_from_path(fullpath, uploader=None):
if not fullpath.endswith(".gbx"): if not fullpath.lower().endswith(".gbx"):
raise ValueError("Path must be a .gbx file") raise ValueError("Path must be a .gbx file")