Fix extensions pep8 error for ocata 91/75791/1
authorHaibin Huang <haibin.huang@intel.com>
Tue, 15 Jan 2019 02:47:33 +0000 (10:47 +0800)
committerHaibin Huang <haibin.huang@intel.com>
Tue, 15 Jan 2019 02:54:08 +0000 (10:54 +0800)
This patch is only fixing the pep8 issues under the extensions
folder for ocata release, which is only triggered by tox mannually.

Change-Id: If756317cb00f821f1f1312d36e6a427f05a7f4eb
Issue-ID: MULTICLOUD-434
Signed-off-by: Haibin Huang <haibin.huang@intel.com>
ocata/ocata/extensions/__init__.py
ocata/ocata/extensions/tests/__init__.py
ocata/ocata/extensions/views/__init__.py
ocata/ocata/extensions/views/extensions.py

index afa702d..ae1ce9d 100644 (file)
@@ -11,4 +11,3 @@
 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 # See the License for the specific language governing permissions and
 # limitations under the License.
-
index afa702d..ae1ce9d 100644 (file)
@@ -11,4 +11,3 @@
 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 # See the License for the specific language governing permissions and
 # limitations under the License.
-
index afa702d..ae1ce9d 100644 (file)
@@ -11,4 +11,3 @@
 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 # See the License for the specific language governing permissions and
 # limitations under the License.
-
index bd90a11..767b0b9 100644 (file)
@@ -14,6 +14,7 @@
 
 import logging
 
+from common.msapi import extsys
 from django.conf import settings
 from newton_base.extensions import extensions as newton_extensions
 
@@ -21,21 +22,22 @@ logger = logging.getLogger(__name__)
 
 # DEBUG=True
 
+
 class Extensions(newton_extensions.Extensions):
 
     def __init__(self):
         self._logger = logger
         self.proxy_prefix = settings.MULTICLOUD_PREFIX
 
+
 class APIv1Extensions(Extensions):
 
     def __init__(self):
         self._logger = logger
         self.proxy_prefix = settings.MULTICLOUD_API_V1_PREFIX
 
-
     def get(self, request, cloud_owner="", cloud_region_id=""):
-        self._logger.info("cloud_owner,cloud_region_id: %s,%s" % (cloud_owner,cloud_region_id))
+        self._logger.info("cloud_owner,cloud_region_id: %s,%s" % (cloud_owner, cloud_region_id))
 
         vimid = extsys.encode_vim_id(cloud_owner, cloud_region_id)
-        return super(APIv1Extensions,self).get(request, vimid)
+        return super(APIv1Extensions, self).get(request, vimid)