diff options
author | Guido van Rossum <guido@python.org> | 1992-07-13 14:28:59 (GMT) |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 1992-07-13 14:28:59 (GMT) |
commit | 01ca336ed101dc5dd8dcd6942df58740dbba81df (patch) | |
tree | f709d78534a0e0ce2a21fded1b6e87532629acac /Lib/commands.py | |
parent | eb23155a8e8e07b8f1d6e6085e7a3a45cc605d55 (diff) | |
download | cpython-01ca336ed101dc5dd8dcd6942df58740dbba81df.zip cpython-01ca336ed101dc5dd8dcd6942df58740dbba81df.tar.gz cpython-01ca336ed101dc5dd8dcd6942df58740dbba81df.tar.bz2 |
New modules mimetools and rfc822.
Minor, minor changes to commands.py and sndhdr.py.
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 5e4a9cf..d8c6e65 100644 --- a/Lib/commands.py +++ b/Lib/commands.py @@ -49,7 +49,7 @@ def mkarg(x): return ' \'' + x + '\'' s = ' "' for c in x: - if c in '\\$"': + if c in '\\$"`': s = s + '\\' s = s + c s = s + '"' |