From 651811e4e3672a51459e73e833522880171e2a88 Mon Sep 17 00:00:00 2001 From: rzaitov Date: Wed, 30 Oct 2013 16:45:13 +0400 Subject: [PATCH] =?UTF-8?q?=D0=B8=D1=81=D0=BF=D1=80=D0=B0=D0=B2=D0=B8?= =?UTF-8?q?=D0=BB=20=D0=BE=D1=88=D0=B8=D0=B1=D0=BA=D1=83=20=D0=BD=D0=B0?= =?UTF-8?q?=D1=85=D0=BE=D0=B6=D0=B4=D0=B5=D0=BD=D0=B8=D1=8F=20=D0=BD=D1=83?= =?UTF-8?q?=D0=B6=D0=BD=D0=BE=D0=B3=D0=BE=20PropertyGroup?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- scripts/utils/csproj/patcher.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/utils/csproj/patcher.py b/scripts/utils/csproj/patcher.py index a43a926..d41d1e5 100644 --- a/scripts/utils/csproj/patcher.py +++ b/scripts/utils/csproj/patcher.py @@ -52,7 +52,7 @@ class Patcher: def IsValueFitFor(self, config_name, condition_attr_value): - result = config_name in condition_attr_value + result = "'{0}'".format(config_name) in condition_attr_value return result