summaryrefslogtreecommitdiffstats
path: root/manifest_xml.py
diff options
context:
space:
mode:
authorStefan Beller <sbeller@google.com>2016-06-17 16:40:08 -0700
committerStefan Beller <sbeller@google.com>2016-06-17 16:45:48 -0700
commit6685106306550c6bf2ad68887efc1d075a6f72eb (patch)
treec71b70a0278d9f012f5d757554f1f056cd992808 /manifest_xml.py
parentd64e8eee518714c0d164a0acae03886a3ff675c9 (diff)
downloadgit-repo-6685106306550c6bf2ad68887efc1d075a6f72eb.tar.gz
pylint: fix indentation in manifest_xml
This fixes pylint warning: ************* Module manifest_xml W:975, 0: Bad indentation. Found 8 spaces, expected 6 (bad-indentation) Change-Id: I967212f9439430351836ebdc27e442d7b77476e2 Signed-off-by: Stefan Beller <sbeller@google.com>
Diffstat (limited to 'manifest_xml.py')
-rw-r--r--manifest_xml.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/manifest_xml.py b/manifest_xml.py
index bc4d8c40..295493de 100644
--- a/manifest_xml.py
+++ b/manifest_xml.py
@@ -972,5 +972,5 @@ class GitcManifest(XmlManifest):
972 def _output_manifest_project_extras(self, p, e): 972 def _output_manifest_project_extras(self, p, e):
973 """Output GITC Specific Project attributes""" 973 """Output GITC Specific Project attributes"""
974 if p.old_revision: 974 if p.old_revision:
975 e.setAttribute('old-revision', str(p.old_revision)) 975 e.setAttribute('old-revision', str(p.old_revision))
976 976