From 01ca336ed101dc5dd8dcd6942df58740dbba81df Mon Sep 17 00:00:00 2001 From: Guido van Rossum Date: Mon, 13 Jul 1992 14:28:59 +0000 Subject: New modules mimetools and rfc822. Minor, minor changes to commands.py and sndhdr.py. --- Lib/commands.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'Lib/commands.py') diff --git a/Lib/commands.py b/Lib/commands.py index 5e4a9cfa7e..d8c6e6542d 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 + '"' -- cgit v1.2.1