Skip to content

Commit

Permalink
Merge branch 'master' into github-pypi-actions
Browse files Browse the repository at this point in the history
  • Loading branch information
kjd committed Aug 22, 2024
2 parents f8a8de4 + 613bdde commit c109d3a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tools/idna-data
Original file line number Diff line number Diff line change
Expand Up @@ -671,7 +671,7 @@ def main():
elif args.action == 'make-libdata':
make_libdata(args, ucdata)
else:
result = re.match(r'^(?i)(U\+|)(?P<cp>[0-9A-F]{4,6})$', args.action)
result = re.match(r'(?i)^(U\+|)(?P<cp>[0-9A-F]{4,6})$', args.action)
if result:
codepoint = int(result.group('cp'), 16)
diagnose_codepoint(codepoint, args, ucdata)
Expand Down

0 comments on commit c109d3a

Please sign in to comment.