Fix always-smart redownloading the wrong files

This commit is contained in:
Joscha 2021-05-23 18:49:34 +02:00
parent e4e5e83be6
commit 5edd868d5b

View File

@ -208,7 +208,7 @@ class OutputDirectory:
if remote_newer is None:
return True
else:
return not remote_newer
return remote_newer
# This should never be reached
raise ValueError(f"{redownload!r} is not a valid redownload policy")