瀏覽代碼

fix for case-sensitive filesystems

main
Martin Dørum 2 年之前
父節點
當前提交
6fe33583d8
共有 1 個文件被更改,包括 4 次插入4 次删除
  1. 4
    4
      tally.py

+ 4
- 4
tally.py 查看文件

@@ -5,13 +5,13 @@ votesfile = "rawvotes.txt"

teams = {}
users = {}
for teamName in os.listdir(jamdir):
if not os.path.exists(f"{jamdir}/{teamName}/TEAM"): continue
for realTeamName in os.listdir(jamdir):
if not os.path.exists(f"{jamdir}/{realTeamName}/TEAM"): continue

teamName = realTeamName.lower()
team = {"name": teamName, "users": [], "tally": 0}
teamName = teamName.lower()
teams[teamName] = team
with open(f"{jamdir}/{teamName}/TEAM") as f:
with open(f"{jamdir}/{realTeamName}/TEAM") as f:
for line in f:
for name in line.split():
name = name.strip().lower()

Loading…
取消
儲存