aboutsummaryrefslogtreecommitdiff
path: root/msi/createmsi.py
diff options
context:
space:
mode:
authorJon Turney <jon.turney@dronecode.org.uk>2018-03-03 21:12:39 +0000
committerJon Turney <jon.turney@dronecode.org.uk>2018-03-03 21:35:53 +0000
commit2f6ed470771858d96d435131e2624fb144464973 (patch)
treeb00c7bd88bebb14a3b1525324607e4d4725eca3f /msi/createmsi.py
parentb8b23f4c50f0d702bc463dffd12c858a96a28961 (diff)
downloadmeson-2f6ed470771858d96d435131e2624fb144464973.zip
meson-2f6ed470771858d96d435131e2624fb144464973.tar.gz
meson-2f6ed470771858d96d435131e2624fb144464973.tar.bz2
Fix various flake8 indentation reports
$ flake8 | grep -E '(E123|E127|E128)' ./run_unittests.py:1358:37: E127 continuation line over-indented for visual indent ./run_unittests.py:1360:37: E127 continuation line over-indented for visual indent ./mesonbuild/minit.py:311:66: E128 continuation line under-indented for visual indent ./mesonbuild/minit.py:312:66: E128 continuation line under-indented for visual indent ./mesonbuild/minit.py:313:66: E128 continuation line under-indented for visual indent ./mesonbuild/compilers/cpp.py:115:63: E127 continuation line over-indented for visual indent ./msi/createmsi.py:156:13: E123 closing bracket does not match indentation of opening bracket's line ./msi/createmsi.py:188:13: E123 closing bracket does not match indentation of opening bracket's line
Diffstat (limited to 'msi/createmsi.py')
-rwxr-xr-xmsi/createmsi.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/msi/createmsi.py b/msi/createmsi.py
index ec0340d..c709745 100755
--- a/msi/createmsi.py
+++ b/msi/createmsi.py
@@ -153,7 +153,7 @@ class PackageGenerator:
'SourceFile': self.redist_path,
'DiskId': '1',
'Language': '0',
- })
+ })
ET.SubElement(product, 'Property', {
'Id': 'WIXUI_INSTALLDIR',
@@ -185,7 +185,7 @@ class PackageGenerator:
'AllowAdvertise': 'no',
'Display': 'hidden',
'Level': '1',
- })
+ })
ET.SubElement(vcredist_feature, 'MergeRef', {'Id': 'VCRedist'})
ET.ElementTree(self.root).write(self.main_xml, encoding='utf-8', xml_declaration=True)
# ElementTree can not do prettyprinting so do it manually