aboutsummaryrefslogtreecommitdiff
path: root/mesonbuild/templates
diff options
context:
space:
mode:
authorEli Schwartz <eschwartz@archlinux.org>2022-01-26 01:51:59 -0500
committerDylan Baker <dylan@pnwbakers.com>2022-01-27 10:48:01 -0800
commit3990dc6d6429f6da8917c2f3f719e56fa20ac2ed (patch)
treea8c243fca13b87cccacc82b2523b99e3bde5e7d6 /mesonbuild/templates
parenta28d5467954572767389729691e497d4da44b16e (diff)
downloadmeson-3990dc6d6429f6da8917c2f3f719e56fa20ac2ed.zip
meson-3990dc6d6429f6da8917c2f3f719e56fa20ac2ed.tar.gz
meson-3990dc6d6429f6da8917c2f3f719e56fa20ac2ed.tar.bz2
flake8: fix indentation style
Diffstat (limited to 'mesonbuild/templates')
-rw-r--r--mesonbuild/templates/valatemplates.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/mesonbuild/templates/valatemplates.py b/mesonbuild/templates/valatemplates.py
index 8706ef8..1aeb46a 100644
--- a/mesonbuild/templates/valatemplates.py
+++ b/mesonbuild/templates/valatemplates.py
@@ -93,9 +93,9 @@ class ValaProject(SampleImpl):
open(source_name, 'w', encoding='utf-8').write(hello_vala_template.format(project_name=self.name))
open('meson.build', 'w', encoding='utf-8').write(
hello_vala_meson_template.format(project_name=self.name,
- exe_name=lowercase_token,
- source_name=source_name,
- version=self.version))
+ exe_name=lowercase_token,
+ source_name=source_name,
+ version=self.version))
def create_library(self) -> None:
lowercase_token = re.sub(r'[^a-z0-9]', '_', self.name.lower())