Fixing py3 syntax error
This commit is contained in:
parent
54c3fcc72a
commit
6211b126a9
|
@ -524,7 +524,7 @@ class RotateELBs(Command):
|
||||||
if name.startswith("internal"):
|
if name.startswith("internal"):
|
||||||
name = "-".join(name.split("-")[1:])
|
name = "-".join(name.split("-")[1:])
|
||||||
elb.update_listeners(account_id, str(region), name, [(443, 7001, 'https', arn)], [443])
|
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):
|
class ProvisionELB(Command):
|
||||||
|
|
Loading…
Reference in New Issue