- Notifications
You must be signed in to change notification settings - Fork673
fix: remove custom URL encoding#1816
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to ourterms of service andprivacy statement. We’ll occasionally send you account related emails.
Already on GitHub?Sign in to your account
Uh oh!
There was an error while loading.Please reload this page.
Conversation
8c17afa
to2a209c3
Comparecodecov-commenter commentedJan 8, 2022 • edited
Loading Uh oh!
There was an error while loading.Please reload this page.
edited
Uh oh!
There was an error while loading.Please reload this page.
Codecov Report
@@ Coverage Diff @@## main #1816 +/- ##==========================================+ Coverage 92.01% 92.10% +0.08%========================================== Files 76 76 Lines 4799 4801 +2 ==========================================+ Hits 4416 4422 +6+ Misses 383 379 -4
Flags with carried forward coverage won't be shown.Click here to find out more.
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others.Learn more.
Thanks again John! Just a few questions.
Uh oh!
There was an error while loading.Please reload this page.
Uh oh!
There was an error while loading.Please reload this page.
Uh oh!
There was an error while loading.Please reload this page.
ca85f93
to94dd1e0
CompareAs discussed let's call this a |
We were using `str.replace()` calls to take care of URL encodingissues.Switch them to use our `utils._url_encode()` function which itself uses`urllib.parse.quote()`Closes:#1356
94dd1e0
to3d49e5e
Compare
Uh oh!
There was an error while loading.Please reload this page.
We were using
str.replace()
calls to take care of URL encodingissues.
Switch them to use our
utils._url_encode()
function which itself usesurllib.parse.quote()
Closes:#1356