6 lines
145 B
Python
6 lines
145 B
Python
def normurlpath(path):
|
|
if not path.startswith('/'):
|
|
path = '/' + path
|
|
path = path.rstrip('/')
|
|
return path.replace('//', '/')
|