Skip to content

Commit

Permalink
use release_repl_rel text for REPL/REL entries
Browse files Browse the repository at this point in the history
  • Loading branch information
Ezra Peisach committed May 24, 2024
1 parent 15a3b0d commit 7d1cd14
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion wwpdb/apps/ann_tasks_v2/correspnd/CorresPNDTemplate.py
Original file line number Diff line number Diff line change
Expand Up @@ -717,8 +717,10 @@ def __getRelaseInfo(self):
text += self.__letterTemplateMap["release_hold"] % self.__corresInfo
elif author_release_status_code == "HPUB":
text += self.__letterTemplateMap["release_hpub"]
elif (author_release_status_code == "REL") or (author_release_status_code == "REPL_REL"):
elif author_release_status_code == "REL":
text += self.__letterTemplateMap["release_rel"]
elif author_release_status_code == "REPL_REL":
text += self.__letterTemplateMap["release_repl_rel"]
else:
text += self.__letterTemplateMap["release_unknown"]
#
Expand Down

0 comments on commit 7d1cd14

Please sign in to comment.