From 21b723ede389cf4f30bbec3c9f8713d7969b709a Mon Sep 17 00:00:00 2001 From: Nguyen Hung Phuong Date: Wed, 17 Aug 2016 14:23:53 +0700 Subject: [PATCH] Fix typo TrivialFix Change-Id: I94fba94aea07f697173cceacf55358f04777aa2f --- horizon/base.py | 2 +- horizon/tables/base.py | 2 +- openstack_dashboard/test/integration_tests/regions/forms.py | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/horizon/base.py b/horizon/base.py index e77b1879c4..4b57e9bb1a 100644 --- a/horizon/base.py +++ b/horizon/base.py @@ -623,7 +623,7 @@ class Dashboard(Registry, HorizonComponent): def allowed(self, context): """Checks for role based access for this dashboard. - Checks for access to any panels in the dashboard and of the the + Checks for access to any panels in the dashboard and of the dashboard itself. This method should be overridden to return the result of diff --git a/horizon/tables/base.py b/horizon/tables/base.py index 3e70163284..c4a92655ab 100644 --- a/horizon/tables/base.py +++ b/horizon/tables/base.py @@ -1052,7 +1052,7 @@ class DataTableOptions(object): if len(self.data_types) > 1: self.mixed_data_type = True - # However, if the mixed_data_type is set to True manually and the + # However, if the mixed_data_type is set to True manually and # the data_types is empty, raise an error. if self.mixed_data_type and len(self.data_types) <= 1: raise ValueError("If mixed_data_type is set to True in class %s, " diff --git a/openstack_dashboard/test/integration_tests/regions/forms.py b/openstack_dashboard/test/integration_tests/regions/forms.py index f8a003849f..342e029fa2 100644 --- a/openstack_dashboard/test/integration_tests/regions/forms.py +++ b/openstack_dashboard/test/integration_tests/regions/forms.py @@ -396,7 +396,7 @@ class TabbedFormRegion(FormRegion): """Forms that are divided with tabs. As example is taken form under the - the Project/Network/Networks/Create Network, on initialization form needs + Project/Network/Networks/Create Network, on initialization form needs to have form field names divided into tuples, that represents the tabs and the fields located under them.