diff options
author | Dimitri van Heesch <dimitri@stack.nl> | 2009-08-14 14:49:07 (GMT) |
---|---|---|
committer | Dimitri van Heesch <dimitri@stack.nl> | 2009-08-14 14:49:07 (GMT) |
commit | 8c6ca30831818a77a6947baad63ab99cb8cd8c31 (patch) | |
tree | fed426d0d7216311cbd009a1fcd2786176478b5e /src/configgen.py | |
parent | 142b4807d2ae7479691bd0800d28364b9857b82f (diff) | |
download | Doxygen-8c6ca30831818a77a6947baad63ab99cb8cd8c31.zip Doxygen-8c6ca30831818a77a6947baad63ab99cb8cd8c31.tar.gz Doxygen-8c6ca30831818a77a6947baad63ab99cb8cd8c31.tar.bz2 |
Release-1.5.9-20090814
Diffstat (limited to 'src/configgen.py')
-rwxr-xr-x | src/configgen.py | 2 |
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: |