fix pep8 error

This commit is contained in:
QI ZHANG 2015-03-12 15:23:52 +08:00
parent 5a3ce58fd2
commit ad269a2ff2

View File

@ -13,7 +13,6 @@
import datetime import datetime
from oslo_log import log as logging from oslo_log import log as logging
from senlin.common import context from senlin.common import context
from senlin.common import exception from senlin.common import exception
from senlin.common import schema from senlin.common import schema
@ -65,7 +64,8 @@ class Profile(object):
kwargs = { kwargs = {
'id': record.id, 'id': record.id,
'spec': record.spec, 'spec': record.spec,
'profile_context': context.RequestContext.from_dict(record.context or {}), 'profile_context': context.RequestContext.from_dict(
record.context or {}),
'permission': record.permission, 'permission': record.permission,
'tags': record.tags, 'tags': record.tags,
'created_time': record.created_time, 'created_time': record.created_time,