]> granicus.if.org Git - python/commitdiff
Fix indent of one line in mkarg(), that got indented badly by the
authorGuido van Rossum <guido@python.org>
Thu, 19 Mar 1998 15:14:24 +0000 (15:14 +0000)
committerGuido van Rossum <guido@python.org>
Thu, 19 Mar 1998 15:14:24 +0000 (15:14 +0000)
recent reindent!

Lib/commands.py

index 567248e405690f932ed4bad8a0a4ef97de28ad5b..8ef854560adfcce169d96a051f03b1d1da1def69 100644 (file)
@@ -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