mirror of
https://git.proxmox.com/git/mirror_zfs.git
synced 2024-11-17 10:01:01 +03:00
Fix arcstat.py handling of unsupported options
This change allows the arcstat.py script to handle unsupported options gracefully and print both error and usage messages when one such option is provided. Reviewed-by: Giuseppe Di Natale <guss80@gmail.com> Reviewed-by: George Melikov <mail@gmelikov.ru> Reviewed-by: Brian Behlendorf <behlendorf1@llnl.gov> Signed-off-by: loli10K <ezomori.nozomu@gmail.com> Closes #7799
This commit is contained in:
parent
802715b74a
commit
1f87313ac8
@ -285,7 +285,7 @@ def init():
|
|||||||
]
|
]
|
||||||
)
|
)
|
||||||
except getopt.error as msg:
|
except getopt.error as msg:
|
||||||
sys.stderr.write(msg)
|
sys.stderr.write("Error: %s\n" % str(msg))
|
||||||
usage()
|
usage()
|
||||||
opts = None
|
opts = None
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user