Skip to content

Commit

Permalink
Merge pull request #2257 from idaholab/wangc/issue_sdd
Browse files Browse the repository at this point in the history
update the manual option for library handler to generate the correct dependency latex file
  • Loading branch information
joshua-cogliati-inl authored Feb 6, 2024
2 parents e5e212c + 87d5bbf commit 9d8eae4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/library_handler.py
Original file line number Diff line number Diff line change
Expand Up @@ -597,7 +597,7 @@ def _readDependencies(initFile):
for lib, request in libs.items():
version = request['version']
msg += ' \\item {}{}\n'.format(
lib.replace('_', '\\_'), ('' if version is None else '-'+version))
lib.replace('_', '\\_'), ('' if version is None else '-'+version.replace('_', '\\_')))
msg += '\\end{itemize}'
print(msg)
else:
Expand Down

0 comments on commit 9d8eae4

Please sign in to comment.