Fix wrong key in msg_fmt at DummyScenarioException

This seems a old mistake, but lead some errors in Jenkins jobs. I got
one [0] (searching `KeyError: u'msg'`)

http://logs.openstack.org/59/157659/16/check/gate-rally-dsvm-rally/1cd222d/console.html

Change-Id: I65c312e2c79ef4592dfac980c5e0f5ee4a04a87a
This commit is contained in:
Kun Huang 2015-06-25 16:35:59 +08:00
parent 8e425edf6f
commit eb2fdcacac

View File

@ -20,7 +20,7 @@ from rally import exceptions
class DummyScenarioException(exceptions.RallyException):
msg_fmt = _("Dummy scenario expected exception: '%(msg)s'")
msg_fmt = _("Dummy scenario expected exception: '%(message)s'")
class Dummy(base.Scenario):