Skip to content

Commit

Permalink
Merge pull request #1541 from fabianegli/fabianegli-patch-weird-dash
Browse files Browse the repository at this point in the history
replace a weird with a normal dash
  • Loading branch information
ewels authored May 5, 2022
2 parents e76ddeb + 8ade0df commit 1685277
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion nf_core/launch.py
Original file line number Diff line number Diff line change
Expand Up @@ -420,7 +420,7 @@ def prompt_param(self, param_id, param_obj, is_required, answers):

# If required and got an empty reponse, ask again
while type(answer[param_id]) is str and answer[param_id].strip() == "" and is_required:
log.error("'-{}' is required".format(param_id))
log.error("'--{}' is required".format(param_id))
answer = questionary.unsafe_prompt([question], style=nf_core.utils.nfcore_question_style)

# Ignore if empty
Expand Down

0 comments on commit 1685277

Please sign in to comment.