From: Jason Stubbs Date: Sun, 13 Nov 2005 00:20:06 +0000 (-0000) Subject: Added a description of emaint to `emaint --help` X-Git-Tag: v2.1_pre1~61 X-Git-Url: http://git.tremily.us/gitweb.cgi?a=commitdiff_plain;h=51714227d756993636cb75d65902ac894ca91e73;p=portage.git Added a description of emaint to `emaint --help` svn path=/main/trunk/; revision=2298 --- diff --git a/bin/emaint b/bin/emaint index b48d417c3..b5508652d 100755 --- a/bin/emaint +++ b/bin/emaint @@ -66,6 +66,12 @@ def exclusive(option, unused1, unused2, unused3, var=None): usage = "usage: emaint [options] " + " | ".join(module_names) + +usage+= "\n\nCurrently emaint can only check and fix problems with one's world\n" +usage+= "file. Future versions will integrate other portage check-and-fix\n" +usage+= "tools and provide a single interface to system health checks." + + parser = OptionParser(usage=usage) parser.add_option("-c", "--check", help="check for problems", action="callback", callback=exclusive, callback_kwargs={"var":"action"})