Skip to content

Commit

Permalink
Merge pull request #3 from telekom/cfgfile
Browse files Browse the repository at this point in the history
fix: adapt cfg file name to linux
  • Loading branch information
c-a-schiller authored Apr 23, 2024
2 parents c02ecec + 41e68d8 commit 52c847e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Calliope-Rennspiel/Python/ki-gui-lin.py
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ def donothing():

def configEinlesen():
try:
f = open("ki-gui-win_conf.cfg", "rb")
f = open("ki-gui-lin_conf.cfg", "rb")
dict = pickle.load(f)
f.close()
return dict
Expand All @@ -85,7 +85,7 @@ def configEinlesen():


def configSpeichern(dict):
f = open("ki-gui-win_conf.cfg", "wb")
f = open("ki-gui-lin_conf.cfg", "wb")
pickle.dump(dict, f)
f.close()

Expand Down

0 comments on commit 52c847e

Please sign in to comment.