From 4b2adda44072887bd449d9b53778744caec327f6 Mon Sep 17 00:00:00 2001 From: BreakWa11 Date: Wed, 22 Jun 2016 17:46:08 +0800 Subject: [PATCH] print_server_help by default --- mujson_mgr.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/mujson_mgr.py b/mujson_mgr.py index d986ca5..0d5c13d 100644 --- a/mujson_mgr.py +++ b/mujson_mgr.py @@ -221,6 +221,8 @@ def main(): print("You have to set the user name or port with -u/-p") elif action == 4: manage.list_user(user) + elif action is None: + print_server_help() if __name__ == '__main__': main()