Skip to content

Commit

Permalink
Merge branch 'main' into fix-codeql-workflow-trigger
Browse files Browse the repository at this point in the history
  • Loading branch information
robandpdx authored Aug 14, 2023
2 parents 9838991 + 78e4ac9 commit 1fe6d33
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion githubapp/okta.py
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ def get_or_create_eventloop():
try:
username = getattr(user.profile, self.USERNAME_ATTRIBUTE)
username = username.split("@")[0]
username = re.sub('[^0-9a-zA-Z-]+', '-', username)
username = re.sub("[^0-9a-zA-Z-]+", "-", username)
member_list.append(
{
"username": username,
Expand Down

0 comments on commit 1fe6d33

Please sign in to comment.