summaryrefslogtreecommitdiffstats
path: root/src/configgen.py
diff options
context:
space:
mode:
authorDimitri van Heesch <dimitri@stack.nl>2013-07-02 13:04:45 (GMT)
committerDimitri van Heesch <dimitri@stack.nl>2013-07-02 13:04:45 (GMT)
commite4a5bed3582672d108024c90e41c71944dd814b4 (patch)
treecb14d37e76f99bd6422a453fda8f53a732583835 /src/configgen.py
parent3fd821c28b41a8bdc97d575dfe2425101c3eb3e6 (diff)
downloadDoxygen-e4a5bed3582672d108024c90e41c71944dd814b4.zip
Doxygen-e4a5bed3582672d108024c90e41c71944dd814b4.tar.gz
Doxygen-e4a5bed3582672d108024c90e41c71944dd814b4.tar.bz2
Python indentation cleanup broke code generation
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 eb0117d..b05f743 100755
--- a/src/configgen.py
+++ b/src/configgen.py
@@ -31,7 +31,7 @@ def parseOption(node):
depends = node.getAttribute('depends')
setting = node.getAttribute('setting')
# 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\t\t\t"')
if len(setting)>0:
print "#if %s" % (setting)
print " //----"