From 8e2af22a27a4f53109de2de29495c91e1aacea3b Mon Sep 17 00:00:00 2001 From: Richard Jones Date: Tue, 22 Sep 2015 11:44:48 +1000 Subject: [PATCH] Remove unnecessary brackets from enabled files These brackets are unnecessary and potentially confusing (are they supposed to be tuples, but without the commas?) It looks like the brackets are leftovers of cut-n-paste from other files where the brackets were used to enclose split-line strings. Change-Id: Id0208d138562a865185f238b8b78835e25d8a3c4 --- openstack_dashboard/enabled/_1051_project_ng_images_panel.py | 2 +- openstack_dashboard/enabled/_3031_identity_users_panel.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/openstack_dashboard/enabled/_1051_project_ng_images_panel.py b/openstack_dashboard/enabled/_1051_project_ng_images_panel.py index 52d5e07764..a92ec15b08 100644 --- a/openstack_dashboard/enabled/_1051_project_ng_images_panel.py +++ b/openstack_dashboard/enabled/_1051_project_ng_images_panel.py @@ -27,4 +27,4 @@ PANEL = 'ngimages' DISABLED = True # Python panel class of the PANEL to be added. -ADD_PANEL = ('openstack_dashboard.dashboards.project.ngimages.panel.NGImages') +ADD_PANEL = 'openstack_dashboard.dashboards.project.ngimages.panel.NGImages' diff --git a/openstack_dashboard/enabled/_3031_identity_users_panel.py b/openstack_dashboard/enabled/_3031_identity_users_panel.py index c049d101f9..453881031d 100644 --- a/openstack_dashboard/enabled/_3031_identity_users_panel.py +++ b/openstack_dashboard/enabled/_3031_identity_users_panel.py @@ -27,4 +27,4 @@ PANEL = 'ngusers' DISABLED = True # Python panel class of the PANEL to be added. -ADD_PANEL = ('openstack_dashboard.dashboards.identity.ngusers.panel.NGUsers') +ADD_PANEL = 'openstack_dashboard.dashboards.identity.ngusers.panel.NGUsers'