mirror of
https://github.com/python/cpython.git
synced 2025-08-31 05:58:33 +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:
|
||||
if c in '\\$"`':
|
||||
s = s + '\\'
|
||||
s = s + c
|
||||
s = s + c
|
||||
s = s + '"'
|
||||
return s
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue