mirror of
https://github.com/jazzband/django-auditlog.git
synced 2026-03-16 22:20:26 +00:00
Remove a redundant exception handler
It duplicates the handler for its parent class Exception.
This commit is contained in:
parent
68c7f44f9c
commit
2ac014baa5
1 changed files with 0 additions and 2 deletions
|
|
@ -370,8 +370,6 @@ class LogEntry(models.Model):
|
|||
)
|
||||
else:
|
||||
values_display.append(choices_dict.get(value, "None"))
|
||||
except ValueError:
|
||||
values_display.append(choices_dict.get(value, "None"))
|
||||
except Exception:
|
||||
values_display.append(choices_dict.get(value, "None"))
|
||||
else:
|
||||
|
|
|
|||
Loading…
Reference in a new issue