mirror of
https://github.com/python/cpython.git
synced 2025-10-22 14:42:22 +00:00
Fix indent of one line in mkarg(), that got indented badly by the
recent reindent!
This commit is contained in:
parent
2543769ca5
commit
677bedab0c
1 changed files with 1 additions and 1 deletions
|
@ -77,6 +77,6 @@ def mkarg(x):
|
||||||
for c in x:
|
for c in x:
|
||||||
if c in '\\$"`':
|
if c in '\\$"`':
|
||||||
s = s + '\\'
|
s = s + '\\'
|
||||||
s = s + c
|
s = s + c
|
||||||
s = s + '"'
|
s = s + '"'
|
||||||
return s
|
return s
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue