mirror of
https://github.com/python/cpython.git
synced 2025-08-19 08:11:46 +00:00
Fix multi-arg list.append() calls.
This commit is contained in:
parent
215193bd93
commit
9c2c1e88a3
14 changed files with 27 additions and 27 deletions
|
@ -67,7 +67,7 @@ class Para:
|
|||
self.words[i] = fo, te, wi, sp, 0, as, de
|
||||
total = total + wi + sp
|
||||
if total < tab:
|
||||
self.words.append(None, '', 0, tab-total, 0, as, de)
|
||||
self.words.append((None, '', 0, tab-total, 0, as, de))
|
||||
#
|
||||
# Make a hanging tag: tab to hang, increment indent_left by hang,
|
||||
# and reset indent_hang to -hang
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue