aboutsummaryrefslogtreecommitdiff
path: root/mesonbuild/backend/vs2010backend.py
diff options
context:
space:
mode:
authorIgor Gnatenko <i.gnatenko.brain@gmail.com>2016-12-31 20:07:53 +0100
committerJussi Pakkanen <jpakkane@gmail.com>2017-01-01 12:02:05 -0500
commit5693758e4650150d2bf9bcda1baf18334ad26e01 (patch)
treebbcd6efb04a8687037632734ddb263061d961685 /mesonbuild/backend/vs2010backend.py
parent2a835c2c10c3ae7c7f51db3bfe5af7d5eee33cb0 (diff)
downloadmeson-5693758e4650150d2bf9bcda1baf18334ad26e01.zip
meson-5693758e4650150d2bf9bcda1baf18334ad26e01.tar.gz
meson-5693758e4650150d2bf9bcda1baf18334ad26e01.tar.bz2
style: fix E231 violations
E231: missing whitespace after ',' Signed-off-by: Igor Gnatenko <i.gnatenko.brain@gmail.com>
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 e8b60c5..37d4157 100644
--- a/mesonbuild/backend/vs2010backend.py
+++ b/mesonbuild/backend/vs2010backend.py
@@ -473,7 +473,7 @@ class Vs2010Backend(backends.Backend):
def escape_additional_option(option):
# See: https://msdn.microsoft.com/en-us/library/bb383819.aspx
table = str.maketrans({'%': '%25', '$': '%24', '@': '%40',
- "'": '%27', ';': '%3B', '?': '%3F', '*': '%2A', ' ': '%20',})
+ "'": '%27', ';': '%3B', '?': '%3F', '*': '%2A', ' ': '%20'})
option = option.translate(table)
# Since we're surrounding the option with ", if it ends in \ that will
# escape the " when the process arguments are parsed and the starting