summaryrefslogtreecommitdiffstats
path: root/tools/xmlGenerator
diff options
context:
space:
mode:
authorKevin Rocard <kevinx.rocard@intel.com>2013-03-26 09:17:50 +0100
committerDavid Wagner <david.wagner@intel.com>2014-02-12 17:03:51 +0100
commitf639bf4bb2ab4cba8380254d44f2068368be8026 (patch)
treeb1971933639ff6402bfcb75eecf3240497ca0260 /tools/xmlGenerator
parente25ee7943f43c089fcfb36e5cd914bdd0900fd37 (diff)
downloadexternal_parameter-framework-f639bf4bb2ab4cba8380254d44f2068368be8026.zip
external_parameter-framework-f639bf4bb2ab4cba8380254d44f2068368be8026.tar.gz
external_parameter-framework-f639bf4bb2ab4cba8380254d44f2068368be8026.tar.bz2
PFW: [pfw parsor] Fix the useless quote added in rule commands
BZ: 97960 The ' in PFW rule command is useless. Delete it in script generator. Change-Id: Ifee9badbff1d6b0e1a564ed90e3a0e60cbf7b343 Signed-off-by: Kevin Rocard <kevinx.rocard@intel.com> Reviewed-on: http://android.intel.com:8080/98368 Reviewed-by: cactus <cactus@intel.com> Reviewed-by: De Chivre, Renaud <renaud.de.chivre@intel.com> Reviewed-by: Wagner, David <david.wagner@intel.com> Reviewed-by: Denneulin, Guillaume <guillaume.denneulin@intel.com> Tested-by: Dixon, CharlesX <charlesx.dixon@intel.com> Reviewed-by: buildbot <buildbot@intel.com> Tested-by: buildbot <buildbot@intel.com>
Diffstat (limited to 'tools/xmlGenerator')
-rwxr-xr-xtools/xmlGenerator/PFWScriptGenerator.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/tools/xmlGenerator/PFWScriptGenerator.py b/tools/xmlGenerator/PFWScriptGenerator.py
index c63b806..03fc46d 100755
--- a/tools/xmlGenerator/PFWScriptGenerator.py
+++ b/tools/xmlGenerator/PFWScriptGenerator.py
@@ -492,12 +492,12 @@ class Operator (Rule) :
script += context.getPrefix() + \
self.PFWCommandRule + " " + \
context.getDomainName() + " " + \
- context.getConfigurationName() + " '" # add a ' for bash quote
+ context.getConfigurationName() + " "
# add the rule
script += self.PFWSyntax (context.getNewLinePrefix())
- script += "'\n" # close the ' bash quote
+ script += "\n"
return script