Skip to content

Commit 3bc9366

Browse files
committed
Merge pull request #17 from clarkperkins/master
Changed profile lookup to be by slug instead of title
2 parents 650af89 + 91ad4a6 commit 3bc9366

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

stackdio/client/blueprint.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ def create_blueprint(self, blueprint, provider="ec2"):
3838
host["zone"] = self.get_zone_id(host["zone"], provider)
3939

4040
if isinstance(host["cloud_profile"], basestring):
41-
host["cloud_profile"] = self.get_profile_id(host["cloud_profile"], title=True) # noqa
41+
host["cloud_profile"] = self.get_profile_id(host["cloud_profile"]) # noqa
4242

4343
for component in host["formula_components"]:
4444
if not component.get("sls_path") and isinstance(component["id"], (tuple, list)):

0 commit comments

Comments
 (0)