diff options
author | Martin v. Löwis <martin@v.loewis.de> | 2001-01-27 08:47:37 (GMT) |
---|---|---|
committer | Martin v. Löwis <martin@v.loewis.de> | 2001-01-27 08:47:37 (GMT) |
commit | 52ce0d08374a7d0c14a8cca46a85d0b53c359fcc (patch) | |
tree | 12b2e7f4a2269d4efadc062d108fa3a6170e5ea3 /Lib/xml/dom/pulldom.py | |
parent | d5fb58f1e34d85533dd7075541843cb6acf0f3cf (diff) | |
download | cpython-52ce0d08374a7d0c14a8cca46a85d0b53c359fcc.zip cpython-52ce0d08374a7d0c14a8cca46a85d0b53c359fcc.tar.gz cpython-52ce0d08374a7d0c14a8cca46a85d0b53c359fcc.tar.bz2 |
Re-indent.
Diffstat (limited to 'Lib/xml/dom/pulldom.py')
-rw-r--r-- | Lib/xml/dom/pulldom.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/xml/dom/pulldom.py b/Lib/xml/dom/pulldom.py index fd26787..66794f3 100644 --- a/Lib/xml/dom/pulldom.py +++ b/Lib/xml/dom/pulldom.py @@ -36,7 +36,7 @@ class PullDOM(xml.sax.ContentHandler): def pop(self): result = self.elementStack[-1] - del self.elementStack[-1] + del self.elementStack[-1] return result def setDocumentLocator(self, locator): |