Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 2 additions & 3 deletions project_quickstart/project_quickstart.py
Original file line number Diff line number Diff line change
Expand Up @@ -100,6 +100,7 @@

##############################


def _welcome_msg():
return f"\nWelcome to project_quickstart version {version} (!)!\n"

Expand Down Expand Up @@ -149,8 +150,6 @@ def _end_msg(project_root, project_dir, code_dir, manuscript_dir, data_dir, resu
)




##############################
def _project_template(src, dst, *, ignore=(), force=False, error_msg=""):
"""Copy the project template directory."""
Expand Down Expand Up @@ -301,7 +300,7 @@ def validate_options(options):
or options['--example']
):
raise ValueError(
'A project name is required or use --script-*/--example to generate templates.'
'A project name is required or use --script-python, --script-R, --script-pipeline, or --example to generate templates.'
)


Expand Down
Loading