diff options
Diffstat (limited to 'Lib/commands.py')
-rw-r--r-- | Lib/commands.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/commands.py b/Lib/commands.py index 567248e..8ef8545 100644 --- a/Lib/commands.py +++ b/Lib/commands.py @@ -77,6 +77,6 @@ def mkarg(x): for c in x: if c in '\\$"`': s = s + '\\' - s = s + c + s = s + c s = s + '"' return s |