Skip to content

Commit

Permalink
Merge pull request #185 from ehenneken/aasnova_update
Browse files Browse the repository at this point in the history
bug fix in bibcode
  • Loading branch information
ehenneken committed Jul 6, 2023
2 parents abd54ed + 8cd6192 commit 8f4cd89
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pyingest/parsers/aasnova.py
Expand Up @@ -105,7 +105,7 @@ def extract_data(self, entry):
# If we have a DOI, assign it to the ASSOCIATED link
links['ASSOCIATED'] = "https://dx.doi/%s"%doi
# Form the bibcode
bibcode = "%snova.pres%s%s" % (year, recno.rjust(4, '.'), lname[0])
bibcode = "%snova.pres%s%s" % (year, recno.rjust(5, '.'), lname[0])
# Now we have all information to send back
rec = {
'bibcode': bibcode,
Expand Down

0 comments on commit 8f4cd89

Please sign in to comment.