Skip to content

Commit

Permalink
Change final file name output to a clickable link
Browse files Browse the repository at this point in the history
  • Loading branch information
andreas-bauer committed Jul 3, 2024
1 parent 45a505a commit 1a1c55c
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion main.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
import argparse
import csv
import os
import sys
from pathlib import Path

Expand Down Expand Up @@ -135,4 +136,4 @@ def create_box(row, fieldnames: list[str], reviewer_ids: set) -> str:
args.tex_file.parent.mkdir(parents=True, exist_ok=True)
with open(args.tex_file, 'w', encoding='utf8') as target:
target.write(final)
print('Done! Created LaTeX file:', args.tex_file)
print(f'Done! Created LaTeX document: file://{os.getcwd()}/{args.tex_file}')

0 comments on commit 1a1c55c

Please sign in to comment.