Skip to content

Commit

Permalink
Another fix
Browse files Browse the repository at this point in the history
  • Loading branch information
lblackstone committed Nov 11, 2021
1 parent 365d20c commit 74a4287
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion provider/pkg/gen/python-templates/kustomize/kustomize.py
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,7 @@ def omit_resource(obj, opts):
# Note: Unlike NodeJS, Python requires that we "pull" on our futures in order to get them scheduled for
# execution. In order to do this, we leverage the engine's RegisterResourceOutputs to wait for the
# resolution of all resources that this YAML document created.
self.resources = k8s.yaml._parse_yaml_document(__ret__, opts, transformations, resource_prefix)
self.resources = k8s.yaml.yaml._parse_yaml_document(__ret__, opts, transformations, resource_prefix)
self.register_outputs({"resources": self.resources})

def translate_output_property(self, prop: str) -> str:
Expand Down
2 changes: 1 addition & 1 deletion sdk/python/pulumi_kubernetes/kustomize/kustomize.py
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,7 @@ def omit_resource(obj, opts):
# Note: Unlike NodeJS, Python requires that we "pull" on our futures in order to get them scheduled for
# execution. In order to do this, we leverage the engine's RegisterResourceOutputs to wait for the
# resolution of all resources that this YAML document created.
self.resources = k8s.yaml._parse_yaml_document(__ret__, opts, transformations, resource_prefix)
self.resources = k8s.yaml.yaml._parse_yaml_document(__ret__, opts, transformations, resource_prefix)
self.register_outputs({"resources": self.resources})

def translate_output_property(self, prop: str) -> str:
Expand Down

0 comments on commit 74a4287

Please sign in to comment.