diff options
author | Daniel Baumann <mail@daniel-baumann.ch> | 2013-11-04 07:16:28 +0100 |
---|---|---|
committer | Daniel Baumann <mail@daniel-baumann.ch> | 2013-11-04 07:16:28 +0100 |
commit | a5bd3715683690498cef82c2efc132a46de3f60e (patch) | |
tree | 08c285e586cd309f99de1d96c2e8e9e3e85cd24b /components/bootstrap_cdebootstrap | |
parent | 52122b28451ec441e037e4003dfecf5ecc21853c (diff) | |
download | vyos-live-build-a5bd3715683690498cef82c2efc132a46de3f60e.tar.gz vyos-live-build-a5bd3715683690498cef82c2efc132a46de3f60e.zip |
Manually adding --version to argparse in python stub since python 3.3 dropped the version keyword.
Diffstat (limited to 'components/bootstrap_cdebootstrap')
-rwxr-xr-x | components/bootstrap_cdebootstrap | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/components/bootstrap_cdebootstrap b/components/bootstrap_cdebootstrap index 24eef1d3f..75c7b41bb 100755 --- a/components/bootstrap_cdebootstrap +++ b/components/bootstrap_cdebootstrap @@ -32,11 +32,11 @@ def main(): description = '''live-build contains the components to build a live system from a configuration directory. The bootstrap_cdebootstrap command bootstraps the chroot system with cdebootstrap.''', epilog = 'See \'man lb_bootstrap_cdebootstrap\' for more information.', - version = 'live-build 4', formatter_class = argparse.ArgumentDefaultsHelpFormatter ) - arguments.add_argument('--verbose', help='set verbose option', action='store_true') + arguments.add_argument('--version', help='show program\'s version number and exit', action='version', version='live-build 4') + arguments.add_argument('--verbose', help='set verbose option', action='store_true') arguments.add_argument('--cdebootstrap-options', help='set cdebootstrap(1) options' ) args = arguments.parse_args() |