Fix quotes

This commit is contained in:
2020-08-11 21:01:27 +00:00
parent 35d62d6b7c
commit 7111ccb821
2 changed files with 14 additions and 13 deletions

View File

@@ -377,7 +377,7 @@ class LockoutViewSet(viewsets.ViewSet, List):
authorization = {}
authorization['id'] = member.id
authorization['name'] = member.first_name + " " + member.last_name
authorization['name'] = member.first_name + ' ' + member.last_name
authorization['common'] = bool(member.orientation_date or member.vetted_date)
authorization['lathe'] = bool(member.lathe_cert_date)
authorization['mill'] = bool(member.mill_cert_date)