diff options
author | Guido van Rossum <guido@python.org> | 1996-10-08 14:13:43 (GMT) |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 1996-10-08 14:13:43 (GMT) |
commit | b8cc6ae5a1e8e548c8c2619e20fb1898ab2521f5 (patch) | |
tree | 72e5d9cf750cb8eb7f6196db295adabbf126c340 /Lib/dos-8x3/para.py | |
parent | 6592f88fc0598aa465f214de0dd4eb5c58229976 (diff) | |
download | cpython-b8cc6ae5a1e8e548c8c2619e20fb1898ab2521f5.zip cpython-b8cc6ae5a1e8e548c8c2619e20fb1898ab2521f5.tar.gz cpython-b8cc6ae5a1e8e548c8c2619e20fb1898ab2521f5.tar.bz2 |
The usual... Sigh...
Diffstat (limited to 'Lib/dos-8x3/para.py')
-rwxr-xr-x | Lib/dos-8x3/para.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Lib/dos-8x3/para.py b/Lib/dos-8x3/para.py index c9b3bdd..709b575 100755 --- a/Lib/dos-8x3/para.py +++ b/Lib/dos-8x3/para.py @@ -64,11 +64,11 @@ class Para: for i in range(len(self.words)): word = self.words[i] if type(word) == Int: continue - fo, te, wi, sp, st, as, de = word - self.words[i] = fo, te, wi, sp, 0, as, de + (fo, te, wi, sp, st, as, de) = word + 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 |