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