Skip to content

Commit

Permalink
Bugfix: Fixed syntax error in expand_variables()
Browse files Browse the repository at this point in the history
  • Loading branch information
daniel-albuschat committed Oct 31, 2020
1 parent cd965df commit fed55e2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion kubedev/utils/kubedev_config.py
Original file line number Diff line number Diff line change
Expand Up @@ -196,4 +196,4 @@ def get_helm_release_name(kubedev):

@staticmethod
def expand_variables(text: str, env_accessor, variables: dict = dict()) -> str:
return Template(text).substitute({*env_accessor.environ(), *variables})
return Template(text).substitute({**env_accessor.environ(), **variables})

0 comments on commit fed55e2

Please sign in to comment.