man: Mention that standard GTK args are also accepted.

This commit is contained in:
Cole Robinson 2013-02-16 14:13:47 -05:00
parent 6208d67129
commit dfc6a37977
2 changed files with 4 additions and 1 deletions

View File

@ -74,6 +74,8 @@ on the host.
=back =back
Standard GTK options like --g-fatal-warnings are also accepted.
=head1 AUTHOR =head1 AUTHOR
Written by Daniel P. Berrange and Cole Robinson. Written by Daniel P. Berrange and Cole Robinson.

View File

@ -115,8 +115,9 @@ def drop_stdio():
def parse_commandline(): def parse_commandline():
optParser = optparse.OptionParser(version=appversion, optParser = optparse.OptionParser(version=appversion,
usage="virt-manager [options]") usage="virt-manager [options]")
optParser.set_defaults(uuid=None) optParser.set_defaults(uuid=None)
optParser.epilog = ("Also accepts standard GTK arguments like "
"--g-fatal-warnings")
# Generate runtime performance profile stats with hotshot # Generate runtime performance profile stats with hotshot
optParser.add_option("--profile", dest="profile", optParser.add_option("--profile", dest="profile",