Replace ' with " in rally/*.py

Change-Id: I6555a3ed1364c21fa4931909760307bf2fb4b85e
Partial-Bug: 1405884
This commit is contained in:
jacobliberman 2015-01-16 15:28:03 -06:00
parent 7ec16d3e3f
commit 1159472653

View File

@ -53,17 +53,17 @@ class _TaskStatus(utils.ImmutableMixin, utils.EnumMixin):
class _DeployStatus(utils.ImmutableMixin, utils.EnumMixin):
DEPLOY_INIT = 'deploy->init'
DEPLOY_STARTED = 'deploy->started'
DEPLOY_SUBDEPLOY = 'deploy->subdeploy'
DEPLOY_FINISHED = 'deploy->finished'
DEPLOY_FAILED = 'deploy->failed'
DEPLOY_INIT = "deploy->init"
DEPLOY_STARTED = "deploy->started"
DEPLOY_SUBDEPLOY = "deploy->subdeploy"
DEPLOY_FINISHED = "deploy->finished"
DEPLOY_FAILED = "deploy->failed"
DEPLOY_INCONSISTENT = 'deploy->inconsistent'
DEPLOY_INCONSISTENT = "deploy->inconsistent"
CLEANUP_STARTED = 'cleanup->started'
CLEANUP_FINISHED = 'cleanup->finished'
CLEANUP_FAILED = 'cleanup->failed'
CLEANUP_STARTED = "cleanup->started"
CLEANUP_FINISHED = "cleanup->finished"
CLEANUP_FAILED = "cleanup->failed"
class _EndpointPermission(utils.ImmutableMixin, utils.EnumMixin):