summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-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