aboutsummaryrefslogtreecommitdiff
path: root/doxybuild.py
diff options
context:
space:
mode:
Diffstat (limited to 'doxybuild.py')
-rw-r--r--doxybuild.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/doxybuild.py b/doxybuild.py
index 862c1f4..254ab71 100644
--- a/doxybuild.py
+++ b/doxybuild.py
@@ -46,7 +46,7 @@ def do_subst_in_file(targetfile, sourcefile, dict):
with open(sourcefile, 'r') as f:
contents = f.read()
for (k,v) in list(dict.items()):
- v = v.replace('\\','\\\\')
+ v = v.replace('\\','\\\\')
contents = re.sub(k, v, contents)
with open(targetfile, 'w') as f:
f.write(contents)
@@ -158,7 +158,7 @@ def main():
Generates doxygen documentation in build/doxygen.
Optionally makes a tarball of the documentation to dist/.
- Must be started in the project top directory.
+ Must be started in the project top directory.
"""
from optparse import OptionParser
parser = OptionParser(usage=usage)