fix snapshot uuid

This commit is contained in:
Nick Sweeting 2024-08-18 01:07:21 -07:00
parent 8c50257fe9
commit 57d31b2b14
No known key found for this signature in database
4 changed files with 12 additions and 6 deletions

View file

@ -294,7 +294,10 @@ class SnapshotAdmin(SearchResultsAdminMixin, admin.ModelAdmin):
)
def identifiers(self, obj):
return get_abid_info(self, obj)
try:
return get_abid_info(self, obj)
except Exception as e:
return str(e)
@admin.display(
description='Title',