1
0
mirror of https://github.com/pirate/ArchiveBox.git synced 2025-08-29 01:00:11 +02:00

Merge pull request #547 from mAAdhaTTah/bugfix-string-posixpath

Fix string checks in schedule
This commit is contained in:
Nick Sweeting
2020-11-23 20:08:43 -05:00
committed by GitHub

View File

@@ -938,7 +938,7 @@ def schedule(add: bool=False,
if every or add: if every or add:
every = every or 'day' every = every or 'day'
quoted = lambda s: f'"{s}"' if s and ' ' in s else s quoted = lambda s: f'"{s}"' if s and ' ' in str(s) else str(s)
cmd = [ cmd = [
'cd', 'cd',
quoted(out_dir), quoted(out_dir),