Skip to content

Commit

Permalink
fixes #128 Merge branch 'release/2.9'
Browse files Browse the repository at this point in the history
  • Loading branch information
abhijeetkaurav1st committed Nov 2, 2020
2 parents 27c7a14 + ac296b7 commit 570246f
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion calm/dsl/decompile/bp_file_helper.py
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,10 @@ def render_bp_file_template(cls, with_secrets=False, metadata_obj=None):
click.secho("Enter the value to be used in secret files")
for file_name in secret_files:
secret_val = click.prompt(
"\nValue for {}".format(file_name), default="", show_default=False
"\nValue for {}".format(file_name),
default="",
show_default=False,
hide_input=True,
)
file_loc = os.path.join(get_local_dir(), file_name)
with open(file_loc, "w+") as fd:
Expand Down

0 comments on commit 570246f

Please sign in to comment.