forked from ticketfrei/ticketfrei
make retootbot python2 compatible
This commit is contained in:
parent
72fcf0cbba
commit
289c6ecb78
|
@ -71,7 +71,7 @@ class RetootBot(object):
|
||||||
retoots.append(text_content)
|
retoots.append(text_content)
|
||||||
|
|
||||||
# save state
|
# 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)
|
pickle.dump(self.seen_toots, f)
|
||||||
os.rename('seen_toots.pickle.part', 'seen_toots.pickle')
|
os.rename('seen_toots.pickle.part', 'seen_toots.pickle')
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue