From: Alfredo Deza Date: Wed, 10 Oct 2018 19:35:31 +0000 (-0400) Subject: ceph-volume remove version reporting from help menu X-Git-Tag: v13.2.3~93^2 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=ea130d467716993924d89390c5fc83bbbaac676f;p=ceph.git ceph-volume remove version reporting from help menu Signed-off-by: Alfredo Deza (cherry picked from commit 20db7bf585f6433c6705396264005a4227cbf2e3) --- diff --git a/src/ceph-volume/ceph_volume/main.py b/src/ceph-volume/ceph_volume/main.py index 33479fbe8741..47358f2dd341 100644 --- a/src/ceph-volume/ceph_volume/main.py +++ b/src/ceph-volume/ceph_volume/main.py @@ -5,7 +5,6 @@ import pkg_resources import sys import logging -import ceph_volume from ceph_volume.decorators import catches from ceph_volume import log, devices, configuration, conf, exceptions, terminal @@ -15,8 +14,6 @@ class Volume(object): ceph-volume: Deploy Ceph OSDs using different device technologies like lvm or physical disks. -Version: {version} - Log Path: {log_path} Ceph Conf: {ceph_path} @@ -43,7 +40,6 @@ Ceph Conf: {ceph_path} warning = 'See "ceph-volume --help" for full list of options.' if warning else '' return self._help.format( warning=warning, - version=ceph_volume.__version__, log_path=conf.log_path, ceph_path=self.stat_ceph_conf(), plugins=self.plugin_help,