Remove TitledHelpFormatter

master
Самоукин Алексей 14 years ago
parent dd7ba05a94
commit e4734a1b54

@ -14,7 +14,7 @@
# See the License for the specific language governing permissions and
# limitations under the License.
from cl_client import client, __app__, __version__
from cl_opt import opt, TitledHelpFormatter
from cl_opt import opt
import sys
from cl_share_cmd import share_cmd
@ -52,7 +52,6 @@ class client_cmd(share_cmd):
comment_examples=COMMENT_EXAMPLES,
description=DESCRIPTION,
option_list=CMD_OPTIONS + opt.variable_control+opt.color_control,
formatter=TitledHelpFormatter(),
check_values=self.checkOpts)
# Создаем объект логики
self.logicObj = client()

@ -15,7 +15,7 @@
# limitations under the License.
from cl_client import client, __app__, __version__
from cl_opt import opt, TitledHelpFormatter
from cl_opt import opt
import sys
from cl_share_cmd import share_cmd
@ -38,7 +38,6 @@ class install_cmd(share_cmd):
usage=USAGE,
description=DESCRIPTION,
option_list=opt.variable_control+opt.color_control,
formatter=TitledHelpFormatter(),
check_values=self.checkOpts)
# Создаем объект логики
self.logicObj = client()

@ -15,7 +15,7 @@
# limitations under the License.
from cl_client import client, __app__, __version__
from cl_opt import opt, TitledHelpFormatter
from cl_opt import opt
import sys
from cl_share_cmd import share_cmd
@ -38,7 +38,6 @@ class uninstall_cmd(share_cmd):
usage=USAGE,
description=DESCRIPTION,
option_list=opt.variable_control+opt.color_control,
formatter=TitledHelpFormatter(),
check_values=self.checkOpts)
# Создаем объект логики
self.logicObj = client()

Loading…
Cancel
Save