Commit 94b04798 authored by Guido van Rossum's avatar Guido van Rossum

Fix indent of one line in mkarg(), that got indented badly by the

recent reindent!
parent af8b140d
......@@ -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
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment