Skip to content

Commit

Permalink
Correcting template_url
Browse files Browse the repository at this point in the history
  • Loading branch information
Dougal Ballantyne committed Oct 29, 2014
1 parent 4a4ade2 commit 642149d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cli/cfncluster/cfnconfig.py
Original file line number Diff line number Diff line change
Expand Up @@ -138,7 +138,7 @@ def __init__(self, args):
if self.region == 'eu-central-1':
self.template_url = ('https://s3.%s.amazonaws.com/cfncluster-%s/templates/cfncluster-%s.cfn.json' % (self.region, self.region, self.version))
else:
self.template_url = ('https://s3-%s.amazonaws.com/cfncluster-%s/templates/cfncluster-%s.cfn.json' % (self.region, self.region, self.version))
self.template_url = ('https://s3.amazonaws.com/cfncluster-%s/templates/cfncluster-%s.cfn.json' % (self.region, self.version))
except AttributeError:
pass

Expand Down

0 comments on commit 642149d

Please sign in to comment.