Skip to content

Commit

Permalink
Merge pull request #486 from CDLUC3/485_fix_shoulder_update_org
Browse files Browse the repository at this point in the history
remove repeated upper() on shoulder
  • Loading branch information
jsjiang authored Oct 18, 2023
2 parents dfd60db + e01a1ea commit 073353c
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ def handle(self, *_, **opt):
'Scheme must be "ark" or "doi": {}'.format(scheme_str)
)

namespace_str = '{}:{}'.format(scheme_str, full_shoulder.upper())
namespace_str = '{}:{}'.format(scheme_str, full_shoulder)

try:
shoulder_model = ezidapp.models.shoulder.Shoulder.objects.get(prefix=namespace_str)
Expand Down

0 comments on commit 073353c

Please sign in to comment.