Skip to content

Commit

Permalink
Match N-numbered papers too
Browse files Browse the repository at this point in the history
  • Loading branch information
jwakely committed Jan 25, 2024
1 parent 5825166 commit 3c9ded3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion bin/make_paper_titles.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,5 +6,5 @@

with open(sys.argv[1]) as f:
for num,data in json.load(f).items():
if re.match(r'^P\d\d\d\dR\d+$', num):
if re.match(r'^(P\d\d\d\dR\d+|N\d\d\d\d)$', num):
print("{} {}".format(num, data['title']))

0 comments on commit 3c9ded3

Please sign in to comment.