Fixing py3 syntax error

This commit is contained in:
kevgliss 2015-12-18 11:01:08 -05:00
parent 54c3fcc72a
commit 6211b126a9
1 changed files with 1 additions and 1 deletions

View File

@ -524,7 +524,7 @@ class RotateELBs(Command):
if name.startswith("internal"):
name = "-".join(name.split("-")[1:])
elb.update_listeners(account_id, str(region), name, [(443, 7001, 'https', arn)], [443])
print "updated {0} to use {1} on 443".format(name, cert_name)
sys.out.write("[+] Updated {0} to use {1} on 443\n".format(name, cert_name))
class ProvisionELB(Command):