mirror of https://github.com/python/cpython.git
Fix indent of one line in mkarg(), that got indented badly by the
recent reindent!
This commit is contained in:
parent
2543769ca5
commit
677bedab0c
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue