From: Raymond Hettinger Date: Thu, 15 Sep 2005 17:21:59 +0000 (+0000) Subject: Removed assignment to an unused variable. X-Git-Tag: v2.4.2c1~21 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=b930fbd93b8d2f140780f75b5869b5dbc85839d5;p=thirdparty%2FPython%2Fcpython.git Removed assignment to an unused variable. --- diff --git a/Lib/textwrap.py b/Lib/textwrap.py index d56d76df4525..7c68280b38d0 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)