diff options
author | Raymond Hettinger <python@rcn.com> | 2005-01-03 07:14:12 (GMT) |
---|---|---|
committer | Raymond Hettinger <python@rcn.com> | 2005-01-03 07:14:12 (GMT) |
commit | 0c26ab02e61eacb5e59c2baa35535fbea019a76e (patch) | |
tree | a9c54b6f19daf01c31f7ff245f297f02f6c1921a /Lib/textwrap.py | |
parent | 44837719ef2886da0671aed55e99cdae14d24b9d (diff) | |
download | cpython-0c26ab02e61eacb5e59c2baa35535fbea019a76e.zip cpython-0c26ab02e61eacb5e59c2baa35535fbea019a76e.tar.gz cpython-0c26ab02e61eacb5e59c2baa35535fbea019a76e.tar.bz2 |
Removed unused line.
Diffstat (limited to 'Lib/textwrap.py')
-rw-r--r-- | Lib/textwrap.py | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/Lib/textwrap.py b/Lib/textwrap.py index 32ab10b..8e3d8cf 100644 --- a/Lib/textwrap.py +++ b/Lib/textwrap.py @@ -267,7 +267,6 @@ class TextWrapper: converted to space. """ text = self._munge_whitespace(text) - indent = self.initial_indent chunks = self._split(text) if self.fix_sentence_endings: self._fix_sentence_endings(chunks) |