diff --git a/scripts/sql_to_wasm_shell_link.py b/scripts/sql_to_wasm_shell_link.py index 47e4efe39d..a1658f0354 100644 --- a/scripts/sql_to_wasm_shell_link.py +++ b/scripts/sql_to_wasm_shell_link.py @@ -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')