]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
Removed assignment to an unused variable.
authorRaymond Hettinger <python@rcn.com>
Thu, 15 Sep 2005 17:21:59 +0000 (17:21 +0000)
committerRaymond Hettinger <python@rcn.com>
Thu, 15 Sep 2005 17:21:59 +0000 (17:21 +0000)
Lib/textwrap.py

index d56d76df45252d172cfbba7811c83e3c8a7fcf8e..7c68280b38d00f0340d606106608e3e30c2cffba 100644 (file)
@@ -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)