Skip to content

Commit

Permalink
Fix typo's.
Browse files Browse the repository at this point in the history
  • Loading branch information
lwesterhof committed Jul 28, 2023
1 parent d164c40 commit 3af53fb
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/python.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ jobs:
- name: Check code for common misspellings
run: |
codespell -q 3 --skip="*.r,*.xsd,*.json" || true
codespell -q 3 --skip="*.css,*.r,*.xsd,*.json,*.map,*.js" || true
- name: Check McCabe complexity
run: |
Expand Down
4 changes: 2 additions & 2 deletions group_manager/templates/group_manager/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -160,7 +160,7 @@ <h1>Group manager</h1>

<div class="mb-3 row expiration-date">
<label class="col-sm-4 form-label" for="f-group-create-expiration-date">Group expiration date
<i class="fa-solid fa-question-circle" aria-hidden="true" title="Date indicating when this group is expected to have become obsolete, when reached datamanagers will automatically reveive a notification"></i>
<i class="fa-solid fa-question-circle" aria-hidden="true" title="Date indicating when this group is expected to have become obsolete, when reached datamanagers will automatically receive a notification"></i>
</label>
<div class="col-sm-8">
<input name="group_expiration_date" id="f-group-create-expiration-date" type="date" class="form-control" />
Expand Down Expand Up @@ -266,7 +266,7 @@ <h1>Group manager</h1>
</div>
<div class="mb-3 row expiration-date">
<label class="col-sm-4 form-label" for="f-group-update-expiration-date">Group expiration date
<i class="fa-solid fa-question-circle" aria-hidden="true" title="Date indicating when this group is expected to have become obsolete, when reached datamanagers will automatically reveive a notification"></i>
<i class="fa-solid fa-question-circle" aria-hidden="true" title="Date indicating when this group is expected to have become obsolete, when reached datamanagers will automatically receive a notification"></i>
</label>
<div class="col-sm-8">
<input name="group_expiration_date" id="f-group-update-expiration-date" type="date" class="form-control" />
Expand Down
2 changes: 1 addition & 1 deletion user/user.py
Original file line number Diff line number Diff line change
Expand Up @@ -339,7 +339,7 @@ class UserinfoEmailMismatchError(Exception):
)
log_error(f"OIDC error occurred for {str(email)}", True)

# Redirect to gate when exception has occured.
# Redirect to gate when exception has occurred.
if exception_occurred:
return redirect(url_for('user_bp.gate'))

Expand Down

0 comments on commit 3af53fb

Please sign in to comment.