summaryrefslogtreecommitdiff
path: root/sphinx/writers/xml.py
diff options
context:
space:
mode:
authorGeorg Brandl <georg@python.org>2015-03-08 16:18:59 +0100
committerGeorg Brandl <georg@python.org>2015-03-08 16:18:59 +0100
commite97210e5206f291765591d1fc7b05c77ffd1bc30 (patch)
tree139e1054ae0b839dbb52455dbb4822929cacc067 /sphinx/writers/xml.py
parentd24107695b8520def566d5098623d76cf507b078 (diff)
downloadsphinx-git-e97210e5206f291765591d1fc7b05c77ffd1bc30.tar.gz
writers: pep8 fixes
Diffstat (limited to 'sphinx/writers/xml.py')
-rw-r--r--sphinx/writers/xml.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/sphinx/writers/xml.py b/sphinx/writers/xml.py
index 40d238cea..4d44d7687 100644
--- a/sphinx/writers/xml.py
+++ b/sphinx/writers/xml.py
@@ -23,8 +23,8 @@ class XMLWriter(BaseXMLWriter):
def translate(self, *args, **kwargs):
self.document.settings.newlines = \
- self.document.settings.indents = \
- self.builder.env.config.xml_pretty
+ self.document.settings.indents = \
+ self.builder.env.config.xml_pretty
self.document.settings.xml_declaration = True
self.document.settings.doctype_declaration = True
return BaseXMLWriter.translate(self)