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
This commit is contained in:
Richard Jones 2015-09-22 11:44:48 +10:00
parent 079a47a5cd
commit 8e2af22a27
2 changed files with 2 additions and 2 deletions

View File

@ -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'

View File

@ -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'