miscellaneous fixes

This commit is contained in:
Mike Fährmann
2020-01-19 22:53:06 +01:00
parent 0e9dc5c88e
commit 37247dbaff
2 changed files with 2 additions and 2 deletions

View File

@@ -1434,7 +1434,7 @@ compare
-------
| Compare versions of the same file and replace/enumerate them on mismatch
| (requires `downloader.*.part`_ = ``true`` and `extractor.*.skip`_ = `false`)
| (requires `downloader.*.part`_ = ``true`` and `extractor.*.skip`_ = ``false``)
compare.action
--------------

View File

@@ -209,7 +209,7 @@ class DownloadJob(Job):
# use fallback URLs if available
for num, url in enumerate(fallback or (), 1):
util.remove_file(self.pathfmt.temppath)
util.remove_file(pathfmt.temppath)
self.log.info("Trying fallback URL #%d", num)
if self.download(url):
break