diff options
author | Narayan Desai <desai@mcs.anl.gov> | 2008-08-07 20:25:49 +0000 |
---|---|---|
committer | Narayan Desai <desai@mcs.anl.gov> | 2008-08-07 20:25:49 +0000 |
commit | d363b33b35b7e8fb3ecb0b38570f40745d63e82f (patch) | |
tree | 71acfd011d6e203090b3fe60c6e9bda4b48adc19 /src/lib | |
parent | dde3c3eb3f25ebfbe94a36d7f91c480b97f4cce0 (diff) | |
download | bcfg2-d363b33b35b7e8fb3ecb0b38570f40745d63e82f.tar.gz bcfg2-d363b33b35b7e8fb3ecb0b38570f40745d63e82f.tar.bz2 bcfg2-d363b33b35b7e8fb3ecb0b38570f40745d63e82f.zip |
Fix -H mode in bcfg2-admin viz
git-svn-id: https://svn.mcs.anl.gov/repos/bcfg/trunk/bcfg2@4871 ce84e21b-d406-0410-9b95-82705330c041
Diffstat (limited to 'src/lib')
-rw-r--r-- | src/lib/Server/Admin/Viz.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lib/Server/Admin/Viz.py b/src/lib/Server/Admin/Viz.py index f6090a4a2..0afb6a121 100644 --- a/src/lib/Server/Admin/Viz.py +++ b/src/lib/Server/Admin/Viz.py @@ -17,7 +17,7 @@ class Viz(Bcfg2.Server.Admin.MetadataCore): Bcfg2.Server.Admin.MetadataCore.__call__(self, args) # First get options to the 'viz' subcommand try: - opts, args = getopt.getopt(args, 'rhbko:', + opts, args = getopt.getopt(args, 'rHbko:', ['raw', 'includehosts', 'includebundles', 'includekey', 'outfile=']) except getopt.GetoptError, msg: |