bugfix: FileExistsError
This commit is contained in:
parent
75e1ff902c
commit
b5288f341c
|
@ -55,8 +55,12 @@ class RetootBot(object):
|
||||||
|
|
||||||
def save_last(self):
|
def save_last(self):
|
||||||
""" save the last seen toot """
|
""" save the last seen toot """
|
||||||
with os.fdopen(os.open('seen_toots.pickle.part', os.O_WRONLY | os.O_EXCL | os.O_CREAT), 'wb') as f:
|
try:
|
||||||
pickle.dump(self.seen_toots, 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)
|
||||||
|
except FileExistsError:
|
||||||
|
with os.fdopen(os.open('seen_toots.pickle.part', os.O_WRONLY), 'wb') as f:
|
||||||
|
pickle.dump(self.seen_toots, f)
|
||||||
|
|
||||||
def crawl(self):
|
def crawl(self):
|
||||||
"""
|
"""
|
||||||
|
|
Loading…
Reference in a new issue