fix fd mode

remotes/1705286528371406548/stable1
Thomas L 2017-12-30 11:31:16 +01:00
parent d22c85da1b
commit 594b3fb5de
1 changed files with 1 additions and 1 deletions

View File

@ -101,7 +101,7 @@ class RetootBot(object):
# If the Mastodon instance returns interesting Errors, add them here:
# save state
with os.fdopen(os.open('seen_toots.pickle.part', os.O_WRONLY | os.O_EXCL | os.O_CREAT), 'w') as f:
with os.fdopen(os.open('seen_toots.pickle.part', os.O_WRONLY | os.O_EXCL | os.O_CREAT), 'wb') as f:
pickle.dump(self.seen_toots, f)
os.rename('seen_toots.pickle.part', 'seen_toots.pickle')