This commit is contained in:
j 2026-02-02 17:24:40 +01:00
commit 17732beb72

View file

@ -44,7 +44,7 @@ def remove_deselected_files():
def needs_update(src, out):
mtime_src = os.lstat(src).st_mtime
if os.path.exists(out)
if os.path.exists(out):
mtime_out = os.lstat(out).st_mtime
else:
mtime_out = 0