aboutsummaryrefslogtreecommitdiff
path: root/mesonbuild/backend/vs2010backend.py
diff options
context:
space:
mode:
authorMike Sinkovsky <msink@permonline.ru>2017-01-06 17:30:43 +0500
committerJussi Pakkanen <jpakkane@gmail.com>2017-01-11 12:33:27 -0500
commite9a891fe25a49042be0cc9893a449e5e75187a2d (patch)
tree8224a9cce438d72a54b98029196b333f6a503061 /mesonbuild/backend/vs2010backend.py
parent34caf6471c0fad8823ce145d3d38afb81ee181ba (diff)
downloadmeson-e9a891fe25a49042be0cc9893a449e5e75187a2d.zip
meson-e9a891fe25a49042be0cc9893a449e5e75187a2d.tar.gz
meson-e9a891fe25a49042be0cc9893a449e5e75187a2d.tar.bz2
style: [E502] the backslash is redundant between brackets
Diffstat (limited to 'mesonbuild/backend/vs2010backend.py')
-rw-r--r--mesonbuild/backend/vs2010backend.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/mesonbuild/backend/vs2010backend.py b/mesonbuild/backend/vs2010backend.py
index e9d7389..7e6831a 100644
--- a/mesonbuild/backend/vs2010backend.py
+++ b/mesonbuild/backend/vs2010backend.py
@@ -125,7 +125,7 @@ class Vs2010Backend(backends.Backend):
outfiles_rel = genlist.get_outputs_for(curfile)
outfiles = [os.path.join(target_private_dir, of) for of in outfiles_rel]
generator_output_files += outfiles
- args = [x.replace("@INPUT@", infilename).replace('@OUTPUT@', sole_output)\
+ args = [x.replace("@INPUT@", infilename).replace('@OUTPUT@', sole_output)
for x in base_args]
args = self.replace_outputs(args, target_private_dir, outfiles_rel)
args = [x.replace("@SOURCE_DIR@", self.environment.get_source_dir()).replace("@BUILD_DIR@", target_private_dir)