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

recent reindent!
This commit is contained in:
Guido van Rossum 1998-03-19 15:14:24 +00:00
parent 2543769ca5
commit 677bedab0c
1 changed files with 1 additions and 1 deletions

View 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