From c8350b7a67248f9ef85ac1df80f124628b14e31d Mon Sep 17 00:00:00 2001 From: Zhongyue Luo Date: Wed, 29 Feb 2012 11:31:10 +0800 Subject: Backslash continuations (python-keystoneclient) Fixes bug #940023 Backslash continuations removal for python-keystoneclient Change-Id: I816fc39ced20bb8ba8a42d3f07a03da94a76f8ea --- keystoneclient/utils.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'keystoneclient/utils.py') diff --git a/keystoneclient/utils.py b/keystoneclient/utils.py index 20936f8..082fa7b 100644 --- a/keystoneclient/utils.py +++ b/keystoneclient/utils.py @@ -64,8 +64,8 @@ def find_resource(manager, name_or_id): try: return manager.find(name=name_or_id) except exceptions.NotFound: - msg = "No %s with a name or ID of '%s' exists." % \ - (manager.resource_class.__name__.lower(), name_or_id) + msg = ("No %s with a name or ID of '%s' exists." % + (manager.resource_class.__name__.lower(), name_or_id)) raise exceptions.CommandError(msg) -- cgit v1.2.1