diff options
author | Jenkins <jenkins@review.openstack.org> | 2014-02-18 06:24:59 +0000 |
---|---|---|
committer | Gerrit Code Review <review@openstack.org> | 2014-02-18 06:24:59 +0000 |
commit | 21cec82ff1b0a3c76865cf190c9b02ab2a5cd16d (patch) | |
tree | d2ea5f7f34b605c92dec0fcc0de02e084fd9bd28 /bin | |
parent | 029ade17d2b1db63911a1622262f9b40df75a72d (diff) | |
parent | 504e87196761453b4664460473596e4bb0e31ee4 (diff) | |
download | python-swiftclient-21cec82ff1b0a3c76865cf190c9b02ab2a5cd16d.tar.gz |
Merge "Add missing backslash."
Diffstat (limited to 'bin')
-rwxr-xr-x | bin/swift | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -230,8 +230,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: |