From f7cccd9154d41cd26e549ab1866955b628af5321 Mon Sep 17 00:00:00 2001 From: mathieu-mp Date: Fri, 4 Feb 2022 18:43:18 +0100 Subject: [PATCH] trim undue EOL spaces --- netbox/extras/tables.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/netbox/extras/tables.py b/netbox/extras/tables.py index bc4d6b465..041b9fc75 100644 --- a/netbox/extras/tables.py +++ b/netbox/extras/tables.py @@ -230,7 +230,7 @@ class ObjectChangeTable(BaseTable): ) class Meta(BaseTable.Meta): - model = ObjectChange + model = ObjectChange fields = ('id', 'time', 'user', 'action', 'changed_object_type', 'object_repr', 'request_id')