Normalize path/foo/ to path/foo, so -2, etc. work (fixes #244)

pull/245/head
PiRSquared17 9 years ago
parent 918fe060d0
commit 5db9a1c7f3

@ -1438,7 +1438,7 @@ def getParameters(params=[]):
'xml': args.xml,
'namespaces': namespaces,
'exnamespaces': exnamespaces,
'path': args.path or '',
'path': os.path.normpath(args.path) or '',
'cookies': args.cookies or '',
'delay': args.delay
}

Loading…
Cancel
Save