From 845888c24e0aaad56504725357715a1f41bc6cd9 Mon Sep 17 00:00:00 2001 From: Jeremy Stretch Date: Tue, 30 Jul 2024 15:11:35 -0400 Subject: [PATCH] #14731: Misc cleanup --- netbox/core/plugins.py | 1 - netbox/core/tables/plugins.py | 2 +- 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/netbox/core/plugins.py b/netbox/core/plugins.py index ab8fd97a1..374cfbe9a 100644 --- a/netbox/core/plugins.py +++ b/netbox/core/plugins.py @@ -155,7 +155,6 @@ def get_catalog_plugins(): # Populate author (if any) if data['author']: - print(data['author']) author = PluginAuthor( name=data['author']['name'], org_id=data['author']['org_id'], diff --git a/netbox/core/tables/plugins.py b/netbox/core/tables/plugins.py index 529fe60f4..f89a886d2 100644 --- a/netbox/core/tables/plugins.py +++ b/netbox/core/tables/plugins.py @@ -44,7 +44,7 @@ class CatalogPluginTable(BaseTable): verbose_name=_('Name') ) author = tables.Column( - accessor=tables.A('author.name'), + accessor=tables.A('author__name'), verbose_name=_('Author') ) is_local = columns.BooleanColumn(