Skip to content

Commit

Permalink
[birthdayreminder] fix load database
Browse files Browse the repository at this point in the history
  • Loading branch information
jbleyel committed Apr 5, 2021
1 parent 50f0de9 commit db3f09f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion birthdayreminder/src/BirthdayReminder.py
Expand Up @@ -98,7 +98,7 @@ def load(self):
tmpList = []
if isfile(fileName):
try:
f = open(fileName, "r")
f = open(fileName, "rb")
tmpList = pickle_load(f)
f.close()
except IOError as xxx_todo_changeme1:
Expand Down

0 comments on commit db3f09f

Please sign in to comment.