From 99debda8e9fe1817b234d2ab319ac43aab2c6e17 Mon Sep 17 00:00:00 2001 From: guo yunxian Date: Fri, 22 Jul 2016 12:27:22 +0800 Subject: [PATCH] Fix typo about message of exception Add missing 's' in exception Change-Id: Iac87294ab5847bf70e817df81e6f8ce89471305a --- tempest/exceptions.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tempest/exceptions.py b/tempest/exceptions.py index f534f30a83..67faad53f3 100644 --- a/tempest/exceptions.py +++ b/tempest/exceptions.py @@ -70,7 +70,7 @@ class ServerUnreachable(exceptions.TempestException): # of get_network_from_name and preprov_creds to tempest.lib, and it should # be migrated along with them class InvalidTestResource(exceptions.TempestException): - message = "%(name) is not a valid %(type), or the name is ambiguous" + message = "%(name)s is not a valid %(type)s, or the name is ambiguous" class RFCViolation(exceptions.RestClientException):