Fix extensions pep error 13/74713/1
authorHaibin Huang <haibin.huang@intel.com>
Mon, 17 Dec 2018 12:17:06 +0000 (20:17 +0800)
committerHaibin Huang <haibin.huang@intel.com>
Mon, 17 Dec 2018 12:17:06 +0000 (20:17 +0800)
This patch is only fixing the pep8 issues under the extensions
folder for pike release, which is only triggerd by tox manually.

Change-Id: If31afe444d92812a7bc462e1c5d7749243e19051
Issue-ID: MULTICLOUD-428
Signed-off-by: Haibin Huang <haibin.huang@intel.com>
pike/pike/extensions/__init__.py
pike/pike/extensions/tests/__init__.py
pike/pike/extensions/views/__init__.py
pike/pike/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 7556937..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,20 +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._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)