Skip to content

Commit

Permalink
[#4801] Fix bug in url_for
Browse files Browse the repository at this point in the history
  • Loading branch information
amercader committed Dec 9, 2019
1 parent a632078 commit c895443
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion ckan/lib/helpers.py
Expand Up @@ -423,7 +423,7 @@ def _url_for_flask(*args, **kw):
u'{}={}'.format(quote(key), quote(value)))
else:
query_args.append(
u'{}={}'.format(quote(key), quote(value)))
u'{}={}'.format(quote(key), quote(val)))
my_url += '&'.join(query_args)
else:
raise
Expand Down
1 change: 1 addition & 0 deletions ckan/lib/navl/dictization_functions.py
Expand Up @@ -246,6 +246,7 @@ def convert(converter, key, converted_data, errors, context):
errors[key].append(e.error)
return


def _remove_blank_keys(schema):

for key, value in schema.items():
Expand Down

0 comments on commit c895443

Please sign in to comment.