summaryrefslogtreecommitdiff
path: root/bin
diff options
context:
space:
mode:
authorChmouel Boudjnah <chmouel@enovance.com>2014-02-05 11:18:48 +0100
committerChmouel Boudjnah <chmouel@enovance.com>2014-02-05 12:15:15 +0100
commit504e87196761453b4664460473596e4bb0e31ee4 (patch)
treea291baff205474154c228c43970f314645f3b635 /bin
parent9b73547b7de004fe623e454c425e9deee5d3d0ca (diff)
downloadpython-swiftclient-504e87196761453b4664460473596e4bb0e31ee4.tar.gz
Add missing backslash.
The one character commit of the day that needed two iterations. Change-Id: I3bfe91c7e164d45d03348b18e0a457314b8baec7
Diffstat (limited to 'bin')
-rwxr-xr-xbin/swift4
1 files changed, 2 insertions, 2 deletions
diff --git a/bin/swift b/bin/swift
index 6459a43..1b1bd11 100755
--- a/bin/swift
+++ b/bin/swift
@@ -227,8 +227,8 @@ def st_delete(parser, args, thread_manager):
thread_manager.error('Account not found')
elif len(args) == 1:
if '/' in args[0]:
- print >> stderr, 'WARNING: / in container name; you '
- 'might have meant %r instead of %r.' % (
+ print >> stderr, 'WARNING: / in container name; you ' \
+ 'might have meant %r instead of %r.' % (
args[0].replace('/', ' ', 1), args[0])
container_queue.put(args[0])
else: