summaryrefslogtreecommitdiffstats
path: root/Lib
diff options
context:
space:
mode:
authorGuido van Rossum <guido@python.org>1998-03-19 15:14:24 (GMT)
committerGuido van Rossum <guido@python.org>1998-03-19 15:14:24 (GMT)
commit677bedab0c82fdec2d2d5b9507a3b05dfb9486f4 (patch)
tree4f1fb6d011f23cad2724a104bfb5585dbc0648ef /Lib
parent2543769ca531dbe964568ca7b15cd0f4b444b113 (diff)
downloadcpython-677bedab0c82fdec2d2d5b9507a3b05dfb9486f4.zip
cpython-677bedab0c82fdec2d2d5b9507a3b05dfb9486f4.tar.gz
cpython-677bedab0c82fdec2d2d5b9507a3b05dfb9486f4.tar.bz2
Fix indent of one line in mkarg(), that got indented badly by the
recent reindent!
Diffstat (limited to 'Lib')
-rw-r--r--Lib/commands.py2
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