Add missing backslash.

The one character commit of the day that needed two iterations.

Change-Id: I3bfe91c7e164d45d03348b18e0a457314b8baec7
This commit is contained in:
Chmouel Boudjnah 2014-02-05 11:18:48 +01:00
parent 9b73547b7d
commit 504e871967
1 changed files with 2 additions and 2 deletions

View File

@ -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: