Ignore existing dirs
parent
a0c01e2a31
commit
566fdbcc48
|
@ -201,7 +201,10 @@ def wait_for_next_puzzle():
|
|||
|
||||
|
||||
def ensure_dir(path: pathlib.Path):
|
||||
os.makedirs(path)
|
||||
try:
|
||||
os.makedirs(path)
|
||||
except FileExistsError:
|
||||
pass
|
||||
|
||||
|
||||
def setup_logs(verbose: bool):
|
||||
|
|
Loading…
Reference in New Issue