Skip to content

Commit

Permalink
Another space in python file
Browse files Browse the repository at this point in the history
  • Loading branch information
Alex-Monahan committed Sep 26, 2024
1 parent a463f51 commit 707ac4e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/sql_to_wasm_shell_link.py
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@
for statement in statements:
trimmed = statement.strip()
no_hyphens = trimmed.replace('-', '%2D')
no_spaces = no_hyphens.replace('\n',' ').replace(' ', '-')
no_spaces = no_hyphens.replace('\n', ' ').replace(' ', '-')
encoded = (
no_spaces.replace(',', '%2C')
.replace('=', '%3D')
Expand Down

0 comments on commit 707ac4e

Please sign in to comment.