Separate parameters with semicolons

main
Bob Mottram 2021-07-25 14:48:55 +01:00
parent 102eaf3a00
commit 3433c03f0d
1 changed files with 1 additions and 1 deletions

View File

@ -734,7 +734,7 @@ def _sharesCatalogParams(path: str) -> (bool, float, float, str):
if '?' not in path:
return today, minPrice, maxPrice, matchPattern
args = path.split('?', 1)[1]
argList = args.split('?')
argList = args.split(';')
for arg in argList:
if '=' not in arg:
continue