1
0
Fork 0
mirror of synced 2024-06-26 10:00:19 +12:00

syntax error

This commit is contained in:
Nick Sweeting 2017-07-04 04:09:42 -05:00
parent f0c7a6f558
commit 59dbf725a6

View file

@ -339,7 +339,7 @@ def calculate_archive_url(link):
else:
# .html needs to be appended
without_scheme = split_url[0].split('://', 1)[-1]
if url.endswith('/'):
if without_scheme.endswith('/'):
return '#'.join([without_scheme + 'index.html', *split_url[1:]])
return '#'.join([without_scheme + '.html', *split_url[1:]])