Skip to content

Commit

Permalink
Merge branch 'master' into dont-give-away-tracebacks
Browse files Browse the repository at this point in the history
  • Loading branch information
jmcs committed May 31, 2016
2 parents f10a497 + 608e471 commit d2adca8
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion senza/cli.py
Expand Up @@ -929,7 +929,10 @@ def status(stack_ref, region, output, w, watch):
except:
answers = []
for answer in answers:
if answer.target.to_text().startswith('{}-'.format(stack.StackName)):
target = answer.target.to_text()
if isinstance(target, bytes):
target = target.decode()
if target.startswith('{}-'.format(stack.StackName)):
main_dns_resolves = True

instances = list(ec2.instances.filter(Filters=[{'Name': 'tag:aws:cloudformation:stack-id',
Expand Down

0 comments on commit d2adca8

Please sign in to comment.