mirror of
https://github.com/f-droid/fdroidserver.git
synced 2025-10-05 17:01:06 +03:00
remove errant trailing slash added in 7613c18dd8
This commit is contained in:
parent
be523a3f1a
commit
c1e9379f67
1 changed files with 1 additions and 1 deletions
|
@ -81,7 +81,7 @@ def main():
|
|||
net.download_file(url, dldir=tmp_dir)
|
||||
except requests.exceptions.HTTPError as e:
|
||||
try:
|
||||
net.download_file(url.replace('/repo', '/archive/'), dldir=tmp_dir)
|
||||
net.download_file(url.replace('/repo', '/archive'), dldir=tmp_dir)
|
||||
except requests.exceptions.HTTPError as e:
|
||||
raise FDroidException('Downloading %s failed. %s', (url, e))
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue