Skip to content

Commit

Permalink
update the manual option for library handler to generate the correct …
Browse files Browse the repository at this point in the history
…latex file
  • Loading branch information
wangcj05 committed Feb 5, 2024
1 parent e5e212c commit 87d5bbf
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 87d5bbf

Please sign in to comment.