fix stripping of '/@@index.html'
This commit is contained in:
parent
443fee52bb
commit
81ae451969
1 changed files with 1 additions and 1 deletions
|
@ -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
|
||||
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue