Skip to content

Commit

Permalink
Bug fix
Browse files Browse the repository at this point in the history
  • Loading branch information
nursix committed Oct 26, 2021
1 parent fc1546e commit 54b2e98
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
eden-asp-68-g7aceb29a9 (2021-10-26 23:50:26)
nursix-dev-5162-gfc1546e04 (2021-10-27 00:16:13)
2 changes: 1 addition & 1 deletion modules/s3db/req.py
Original file line number Diff line number Diff line change
Expand Up @@ -1499,7 +1499,7 @@ def req_onaccept(form):
req_status = record.req_status
if req_status is not None:
status_requires = table.req_status.requires
if status_requires.hasattr("other"):
if hasattr(status_requires, "other"):
status_requires = status_requires.other
opts = [opt[0] for opt in status_requires.options()]
if str(REQ_STATUS_CANCEL) in opts:
Expand Down

0 comments on commit 54b2e98

Please sign in to comment.