summaryrefslogtreecommitdiffstats
path: root/src/configgen.py
diff options
context:
space:
mode:
Diffstat (limited to 'src/configgen.py')
-rwxr-xr-xsrc/configgen.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/configgen.py b/src/configgen.py
index c58464d..f567127 100755
--- a/src/configgen.py
+++ b/src/configgen.py
@@ -29,7 +29,7 @@ def parseOption(node):
adefval = node.getAttribute('altdefval')
depends = node.getAttribute('depends')
# replace \ by \\, replace " by \", and ' ' by a newline with end string and start string at next line
- docC = doc.strip().replace('\\','\\\\').replace('"','\\"').replace(' ',' \\n"\n "')
+ docC = doc.strip().replace('\\','\\\\').replace('"','\\"').replace(' ','\\n"\n "')
print " //----"
if type=='bool':
if len(adefval)>0: