From b7f48e39c379e60473c220a586039aa56cea0b50 Mon Sep 17 00:00:00 2001 From: Guido van Rossum Date: Tue, 8 Oct 1996 14:06:17 +0000 Subject: Change to always call list.append with a single argument. --- Lib/lib-old/fmt.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'Lib/lib-old/fmt.py') diff --git a/Lib/lib-old/fmt.py b/Lib/lib-old/fmt.py index 4a655e4c90..f7c2718859 100644 --- a/Lib/lib-old/fmt.py +++ b/Lib/lib-old/fmt.py @@ -335,7 +335,7 @@ closechar = \ {'b':'*', 'i':'_', 'u':'_', 'q':'\'', 'B':'*', 'I':'_', 'U':'_', 'Q':'\''} def finalize(para): oldfont = curfont = 'r' - para.words.append('r', '', 0, 0, 0, 0) # temporary, deleted at end + para.words.append(('r', '', 0, 0, 0, 0)) # temporary, deleted at end for i in range(len(para.words)): fo, te, wi = para.words[i][:3] if fo <> None: curfont = fo -- cgit v1.2.1