From: Guido van Rossum Date: Thu, 19 Mar 1998 15:14:24 +0000 (+0000) Subject: Fix indent of one line in mkarg(), that got indented badly by the X-Git-Tag: v1.5.1~332 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=677bedab0c82fdec2d2d5b9507a3b05dfb9486f4;p=thirdparty%2FPython%2Fcpython.git Fix indent of one line in mkarg(), that got indented badly by the recent reindent! --- diff --git a/Lib/commands.py b/Lib/commands.py index 567248e40569..8ef854560adf 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