From 7f6f5e1fcbcfaeef85baa12e8ec5461e3f1bb6c0 Mon Sep 17 00:00:00 2001 From: Jonathan Karr Date: Fri, 28 Jun 2019 00:16:23 -0400 Subject: [PATCH] setting help in cement controllers --- wc_lang/__main__.py | 1 + 1 file changed, 1 insertion(+) diff --git a/wc_lang/__main__.py b/wc_lang/__main__.py index 1acf06a..0cd2d02 100644 --- a/wc_lang/__main__.py +++ b/wc_lang/__main__.py @@ -26,6 +26,7 @@ class BaseController(cement.Controller): class Meta: label = 'base' description = "Command line utilities for managing whole-cell model definitions" + help = "Command line utilities for managing whole-cell model definitions" arguments = [ (['-v', '--version'], dict(action='version', version=wc_lang.__version__)), ]