make retootbot python2 compatible

This commit is contained in:
b3yond 2017-07-11 21:42:32 +02:00
parent 72fcf0cbba
commit 289c6ecb78

View file

@ -71,7 +71,7 @@ class RetootBot(object):
retoots.append(text_content)
# save state
with open('seen_toots.pickle.part', 'xb') as f:
with os.fdopen(os.open('seen_toots.pickle.part', os.O_WRONLY | os.O_EXCL | os.O_CREAT), 'w') as f:
pickle.dump(self.seen_toots, f)
os.rename('seen_toots.pickle.part', 'seen_toots.pickle')