aboutsummaryrefslogtreecommitdiff
path: root/manual tests
diff options
context:
space:
mode:
authorIgor Gnatenko <i.gnatenko.brain@gmail.com>2017-01-02 19:16:56 +0100
committerIgor Gnatenko <i.gnatenko.brain@gmail.com>2017-01-02 19:16:56 +0100
commitef3cc6b3fabb1032066e7c8ecfd67dc4e1169193 (patch)
tree8bcd676df78fe0973daf921f6f1fda79a67fd2f7 /manual tests
parentcdd05aa5dce3229dac09359303438ae98e1f100b (diff)
downloadmeson-ef3cc6b3fabb1032066e7c8ecfd67dc4e1169193.zip
meson-ef3cc6b3fabb1032066e7c8ecfd67dc4e1169193.tar.gz
meson-ef3cc6b3fabb1032066e7c8ecfd67dc4e1169193.tar.bz2
style: fix E127 violations
E127: continuation line over-indented for visual indent Signed-off-by: Igor Gnatenko <i.gnatenko.brain@gmail.com>
Diffstat (limited to 'manual tests')
-rwxr-xr-xmanual tests/4 standalone binaries/build_windows_package.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/manual tests/4 standalone binaries/build_windows_package.py b/manual tests/4 standalone binaries/build_windows_package.py
index c676113..c361aa0 100755
--- a/manual tests/4 standalone binaries/build_windows_package.py
+++ b/manual tests/4 standalone binaries/build_windows_package.py
@@ -23,10 +23,10 @@ libs = glob(os.path.join('build', sdl_dir, 'lib/x86/*'))
# Sorry for this hack but this needs to work during development
# when Meson is not in path.
subprocess.check_call(['python3', r'..\..\meson.py', 'build',
- '--backend=ninja', '--buildtype=release'])
+ '--backend=ninja', '--buildtype=release'])
subprocess.check_call(['ninja'], cwd='build')
shutil.copy('myapp.iss', 'build')
subprocess.check_call([r'\Program Files\Inno Setup 5\ISCC.exe', 'myapp.iss'],
- cwd = 'build')
+ cwd = 'build')
shutil.copy('build/setup.exe', 'myapp 1.0.exe')
shutil.rmtree('build')