summaryrefslogtreecommitdiff
path: root/keystoneclient/utils.py
diff options
context:
space:
mode:
authorZhongyue Luo <lzyeval@gmail.com>2012-02-29 11:31:10 +0800
committerZhongyue Luo <lzyeval@gmail.com>2012-03-17 01:08:58 +0800
commitc8350b7a67248f9ef85ac1df80f124628b14e31d (patch)
treec7d8e404c791148850e311b1349263f56351298a /keystoneclient/utils.py
parentc10ba52316897607dc37181440622803738ae068 (diff)
downloadpython-keystoneclient-c8350b7a67248f9ef85ac1df80f124628b14e31d.tar.gz
Backslash continuations (python-keystoneclient)
Fixes bug #940023 Backslash continuations removal for python-keystoneclient Change-Id: I816fc39ced20bb8ba8a42d3f07a03da94a76f8ea
Diffstat (limited to 'keystoneclient/utils.py')
-rw-r--r--keystoneclient/utils.py4
1 files changed, 2 insertions, 2 deletions
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)