diff options
author | Raymond Hettinger <python@rcn.com> | 2005-09-15 17:21:59 (GMT) |
---|---|---|
committer | Raymond Hettinger <python@rcn.com> | 2005-09-15 17:21:59 (GMT) |
commit | b930fbd93b8d2f140780f75b5869b5dbc85839d5 (patch) | |
tree | cb7915215494b6693609e16fdab7ca7729f92ad0 | |
parent | a9fbcde29a706ad88de7ad22fb61530c6c1d561d (diff) | |
download | cpython-b930fbd93b8d2f140780f75b5869b5dbc85839d5.zip cpython-b930fbd93b8d2f140780f75b5869b5dbc85839d5.tar.gz cpython-b930fbd93b8d2f140780f75b5869b5dbc85839d5.tar.bz2 |
Removed assignment to an unused variable.
-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 d56d76d..7c68280 100644 --- a/Lib/textwrap.py +++ b/Lib/textwrap.py @@ -272,7 +272,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) |