Fix for cases when parameter name is urlencoded

This commit is contained in:
Miroslav Stampar
2014-09-12 13:29:30 +02:00
parent ae8c12c9c3
commit 637d3cbaf7
2 changed files with 4 additions and 1 deletions

View File

@@ -549,7 +549,7 @@ def paramToDict(place, parameters=None):
parts = element.split("=")
if len(parts) >= 2:
parameter = parts[0].replace(" ", "")
parameter = urldecode(parts[0].replace(" ", ""))
if conf.paramDel and conf.paramDel == '\n':
parts[-1] = parts[-1].rstrip()