Fixed some PEP8 errors

This commit is contained in:
tengqm 2015-01-16 18:19:00 +08:00
parent 9b25ec691a
commit 1d64394599
3 changed files with 5 additions and 7 deletions

View File

@ -14,11 +14,9 @@
# See the License for the specific language governing permissions and
# limitations under the License.
from oslo.config import cfg
from oslo.utils import importutils
from webob import exc
from oslo_config import cfg
from oslo_utils import importutils
from senlin.common.i18n import _
from senlin.common import wsgi

View File

@ -10,9 +10,9 @@
# License for the specific language governing permissions and limitations
# under the License.
from oslo_middleware import request_id as oslo_request_id
from oslo.utils import importutils
from oslo_context import context
from oslo_middleware import request_id as oslo_request_id
from oslo_utils import importutils
from senlin.common import exception
from senlin.common import policy

View File

@ -308,7 +308,7 @@ class ActionInProgress(SenlinException):
class ActionBeingWorked(SenlinException):
msg_fmt = _("Worker %(owner)s is working on this action." )
msg_fmt = _("Worker %(owner)s is working on this action.")
class StopActionFailed(SenlinException):