Remove white space between print ()

There was a white space between print and ()

Change-Id: I944321fb8a5e78510f924d2a8c364a258add9ceb
This commit is contained in:
Anusree 2017-01-20 03:48:28 +05:30 committed by Georg Kunz
parent ce980f3865
commit 6c965e3e72
1 changed files with 2 additions and 2 deletions

View File

@ -31,8 +31,8 @@ from gluon.common import exception as exc
def print_basic_usage(argv, model_list):
print ("Usage: %s --api <api_name> [OPTIONS] COMMAND[ARGS]..." %
os.path.basename(argv[0]))
print("Usage: %s --api <api_name> [OPTIONS] COMMAND[ARGS]..." %
os.path.basename(argv[0]))
print("\nOptions:")
print("--api TEXT Name of API, one of %s" % model_list)
print("--port INTEGER Port of endpoint (OS_PROTON_PORT)")