исправил ошибку нахождения нужного PropertyGroup

This commit is contained in:
rzaitov 2013-10-30 16:45:13 +04:00
parent 38e9eb5487
commit 651811e4e3
1 changed files with 1 additions and 1 deletions

View File

@ -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