Skip to content

Commit

Permalink
Small code formatting update needed in ci_boost_release.py
Browse files Browse the repository at this point in the history
  • Loading branch information
sdarwin committed Jan 30, 2024
1 parent bbeab6e commit 1c9fe1f
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions ci_boost_release.py
Original file line number Diff line number Diff line change
Expand Up @@ -542,10 +542,12 @@ def command_build(self):
os.path.join(self.build_dir, "site-config.jam"),
'using quickbook : "%s" ;'
% (os.path.join(self.build_dir, "dist", "bin", "quickbook")),
'using auto-index : "%s" ;'
% (os.path.join(self.build_dir, "dist", "bin", "auto_index"))
if enable_auto_index
else "",
(
'using auto-index : "%s" ;'
% (os.path.join(self.build_dir, "dist", "bin", "auto_index"))
if enable_auto_index
else ""
),
"using docutils : %s ;" % docutils_path,
"using doxygen ;",
'using boostbook : "%s" : "%s" ;'
Expand Down

0 comments on commit 1c9fe1f

Please sign in to comment.