Skip to content

Commit

Permalink
fix(connector): fix bug in url_path_params
Browse files Browse the repository at this point in the history
  • Loading branch information
dovahcrow committed May 19, 2021
1 parent 9f5b9b2 commit c95a7ff
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion dataprep/connector/schema/defs.py
Original file line number Diff line number Diff line change
Expand Up @@ -404,7 +404,7 @@ def populate_url(self, params: Dict[str, str]) -> str:
return url

for key, value in params.items():
url = url.replace("{" + key + "}", value)
url = url.replace("{" + key + "}", str(value))

return url

Expand Down

0 comments on commit c95a7ff

Please sign in to comment.