Skip to content

Commit 91ad4a6

Browse files
author
Clark Perkins
committed
Changed profile lookup to be by slug instead of title
1 parent 71cdfd8 commit 91ad4a6

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)