mirror of
https://github.com/ArchiveBox/ArchiveBox
synced 2024-11-10 14:44:18 +00:00
fix: status command was failing on empty archives
This commit is contained in:
parent
be0dff8126
commit
6a2e6aad2f
1 changed files with 2 additions and 1 deletions
|
@ -460,6 +460,7 @@ def status(out_dir: str=OUTPUT_DIR) -> None:
|
|||
if last_login:
|
||||
print(f' Last UI login: {last_login.username} @ {str(last_login.last_login)[:16]}')
|
||||
last_updated = Snapshot.objects.order_by('updated').last()
|
||||
if last_updated:
|
||||
print(f' Last changes: {str(last_updated.updated)[:16]}')
|
||||
|
||||
if not users:
|
||||
|
|
Loading…
Reference in a new issue