Skip to content

Commit

Permalink
Update status.py
Browse files Browse the repository at this point in the history
avoid error if last-login is None
  • Loading branch information
eric-intuitem committed May 12, 2024
1 parent 946ffb6 commit 85cbf85
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion backend/core/management/commands/status.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,9 @@ def handle(self, *args, **kwargs):
nb_risk_acceptances = RiskAcceptance.objects.all().count()
created_at = Folder.get_root_folder().created_at
last_login = max(
x["last_login"] for x in User.objects.all().values("last_login")
x["last_login"]
for x in User.objects.all().values("last_login")
if x["last_login"]
)
self.stdout.write(
f"created_at={created_at.strftime('%Y-%m-%dT%H:%M')} last_login={last_login.strftime('%Y-%m-%dT%H:%M') if last_login else last_login} "
Expand Down

0 comments on commit 85cbf85

Please sign in to comment.