fix stripping of '/@@index.html'

This commit is contained in:
Helmut Merz 2016-06-13 10:01:47 +02:00
parent 443fee52bb
commit 81ae451969

View file

@ -69,7 +69,7 @@ class URLGetter(BaseURLGetter):
def __str__(self):
url = self.__request.getURL()
if url.endswith('/@@index.html'):
url = url[-len('/@@index.html')]
url = url[:-len('/@@index.html')]
return url