Added a missing self
This commit is contained in:
parent
2f60124894
commit
9123fa3b8f
1 changed files with 1 additions and 1 deletions
|
|
@ -303,7 +303,7 @@ class AppGroup(click.Group):
|
|||
def decorator(f):
|
||||
if wrap_for_ctx:
|
||||
f = with_appcontext(f)
|
||||
return click.Group.command(*args, **kwargs)(f)
|
||||
return click.Group.command(self, *args, **kwargs)(f)
|
||||
return decorator
|
||||
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue