aboutsummaryrefslogtreecommitdiffstats
path: root/configure.py
diff options
context:
space:
mode:
authorlloyd <[email protected]>2015-01-12 04:03:17 +0000
committerlloyd <[email protected]>2015-01-12 04:03:17 +0000
commit747b8127649791bfd1dcae10b55c8a194b43d2b0 (patch)
treecf97cfca412866594b5bfa60e7c86d7e159f9527 /configure.py
parente05de6c4c5c37e66f89394019dd1045b7a2f8af0 (diff)
Fix string formatting
Diffstat (limited to 'configure.py')
-rwxr-xr-xconfigure.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.py b/configure.py
index 626a40c8d..84bc38e8f 100755
--- a/configure.py
+++ b/configure.py
@@ -176,7 +176,7 @@ class BuildConfigurationInformation(object):
yield cmd_for('manual')
if options.with_doxygen:
- yield 'doxygen %s' + os.sep + 'botan.doxy' % (self.build_dir)
+ yield 'doxygen %s%sbotan.doxy' % (self.build_dir, os.sep)
self.build_doc_commands = '\n'.join(['\t' + s for s in build_doc_commands()])