mirror of https://github.com/apache/cloudstack.git
- CLOUDSTACK-3229: Removes String format method call that is not
supported in Python 2.4
This commit is contained in:
parent
4b0582381f
commit
8672e0fb94
|
|
@ -352,7 +352,7 @@ def s3(session, args):
|
|||
client.delete(bucket, key, filename)
|
||||
else:
|
||||
raise RuntimeError(
|
||||
"S3 plugin does not support operation {0}.".format(operation))
|
||||
"S3 plugin does not support operation " + operation))
|
||||
|
||||
return 'true'
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue