]> review.fuel-infra Code Review - openstack-build/cinder-build.git/commitdiff
Fix further Hacking 0.6.x warnings
authorDirk Mueller <dirk@dmllr.de>
Fri, 19 Jul 2013 23:14:44 +0000 (01:14 +0200)
committerDirk Mueller <dirk@dmllr.de>
Mon, 22 Jul 2013 15:23:40 +0000 (17:23 +0200)
* Add missing Apache license header
* Avoid using locals() in string formatting

Change-Id: Ib9fa878babae5c50bc77e48c62b33a8ebfe39f7f

cinder/image/image_utils.py
cinder/tests/api/contrib/test_admin_actions.py
cinder/tests/api/openstack/test_wsgi.py

index af6f887daf9b72809db959701d6d68e4f7c5ed53..a212ed6265c2dd9c88418a799fd0805a1841616e 100644 (file)
@@ -228,8 +228,8 @@ def fetch_verify_image(context, image_service, image_id, dest,
         if backing_file is not None:
             raise exception.ImageUnacceptable(
                 image_id=image_id,
-                reason=_("fmt=%(fmt)s backed by:"
-                         "%(backing_file)s") % locals())
+                reason=(_("fmt=%(fmt)s backed by: %(backing_file)s") %
+                        {'fmt': fmt, 'backing_file': backing_file}))
 
 
 def fetch_to_raw(context, image_service,
index 80e53d7d3639d5cd2dc1efc7696471fe65b00d8c..ef4878c5606056808265646605ef571488e86338 100644 (file)
@@ -1,3 +1,15 @@
+# Licensed under the Apache License, Version 2.0 (the "License"); you may
+# not use this file except in compliance with the License. You may obtain
+# a copy of the License at
+#
+#      http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing, software
+# distributed under the License is distributed on an "AS IS" BASIS, 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.
+
 import shutil
 import tempfile
 import webob
index 77308602d0b5c03886d5f5a3a2a28a6f55894a1b..75e0fa21553421b26b9de68d8761c01355898a6e 100644 (file)
@@ -1,5 +1,17 @@
 # vim: tabstop=4 shiftwidth=4 softtabstop=4
 
+# Licensed under the Apache License, Version 2.0 (the "License"); you may
+# not use this file except in compliance with the License. You may obtain
+# a copy of the License at
+#
+#      http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing, software
+# distributed under the License is distributed on an "AS IS" BASIS, 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.
+
 import inspect
 import webob