From 1cf053bc39fd94181587083967de8a21909948ec Mon Sep 17 00:00:00 2001 From: Alexis Lahouze Date: Fri, 19 May 2017 11:50:36 +0200 Subject: [PATCH] Rename command to remove a name conflict. --- accountant/run.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/accountant/run.py b/accountant/run.py index d1a4205..b069fc8 100644 --- a/accountant/run.py +++ b/accountant/run.py @@ -18,12 +18,12 @@ app = create_app(config_path) # pylint: disable=invalid-name # Define commands to handle users. @app.cli.group() -def user(): +def users(): """ User management. """ pass -@user.command() +@users.command() def add(email, password): """ Add a new user. """ user = User()