Commit c715ccf9 authored by Vivien Alger's avatar Vivien Alger

Fixing typo

parent 4f3750c2
......@@ -77,7 +77,7 @@ def parseCli():
Parser definition for the command line interface
"""
usage = """ %(prog)s <filepath> <xml-path> -s [sections] -opts [options] """
parser = ArgumentParser(prog="kvm-monitor.py", usage=usage)
parser = ArgumentParser(prog="kvm_monitor.py", usage=usage)
parser.add_argument("filepath",
help="Path to the configuration file with the informations"
......@@ -110,7 +110,7 @@ def runMonitor():
info_dict = MonitorConfig(args.filepath,
args.xml_path,
args.sections,
args.options,
args.options
).getConfig()
serializer = GenerateXMLFile("report.xml",info_dict)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment