Skip to content

Commit

Permalink
fix: invalid syntax for click option
Browse files Browse the repository at this point in the history
ughhhhhhhhhh

Signed-off-by: Chinmay D. Pai <chinmaydpai@gmail.com>
  • Loading branch information
Thunderbottom committed Dec 15, 2019
1 parent 699705f commit cac66a6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion bench/commands/make.py
Expand Up @@ -35,7 +35,7 @@ def init(path, apps_path, frappe_path, frappe_branch, no_procfile, no_backups,
@click.argument('name', nargs=-1) # Dummy argument for backward compatibility
@click.argument('git-url')
@click.option('--branch', default=None, help="branch to checkout")
@click.option('--overwrite' is_flag=True)
@click.option('--overwrite', is_flag=True)
def get_app(git_url, branch, name=None):
"clone an app from the internet and set it up in your bench"
from bench.app import get_app
Expand Down

0 comments on commit cac66a6

Please sign in to comment.