Skip to content

Commit

Permalink
Merge pull request #43 from lorforlinux/main
Browse files Browse the repository at this point in the history
Fix PDF download link
  • Loading branch information
bhawnasehgal authored May 13, 2024
2 parents 18973a7 + a7512ed commit 9f0d78f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@
# PDF build details
if(pdf and (name in pdf_build or pdf_build_all)):
pdf_paths.append(path)
tex_name = '-'.join(path.split('/')[1:])
tex_name = path.split('/')[-1]
latex_documents.append((path+"/index", tex_name+".tex", "", author, "manual"))

# -- General configuration ---------------------------------------------------
Expand Down

0 comments on commit 9f0d78f

Please sign in to comment.