Remove white space between print and ()

There is a white space between print and ()
in /tempauth.py, This patch fix it

Change-Id: Id3493bdef12223aa3a2bffc200db8710f5949101
This commit is contained in:
gecong1973 2016-08-30 15:08:49 +08:00
parent 95322d9830
commit 3b5850836c
1 changed files with 2 additions and 2 deletions

View File

@ -156,8 +156,8 @@ class TempAuth(object):
format_acl(version=2, acl_dict=acl_data)}
header_str = ' '.join(["-H '%s: %s'" % (k, v)
for k, v in headers.items()])
print ('curl -D- -X POST -H "x-auth-token: $token" %s '
'$storage_url' % header_str)
print('curl -D- -X POST -H "x-auth-token: $token" %s '
'$storage_url' % header_str)
'
:param app: The next WSGI app in the pipeline