- CLOUDSTACK-3229: Removes String format method call that is not

supported in Python 2.4
This commit is contained in:
John Burwell 2013-08-01 02:44:17 -04:00
parent 4b0582381f
commit 8672e0fb94

View File

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