summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorZac Medico <zmedico@gentoo.org>2008-06-18 03:36:38 +0000
committerZac Medico <zmedico@gentoo.org>2008-06-18 03:36:38 +0000
commit8f360f92e67301f4621dd30cd5e3e2c0c6bdebd6 (patch)
tree5d1a5ecdaf698d32f017074b7e52a1240bb981bc
parentUse optparse instead of getopt. (diff)
downloadportage-idfetch-8f360f92e67301f4621dd30cd5e3e2c0c6bdebd6.tar.gz
portage-idfetch-8f360f92e67301f4621dd30cd5e3e2c0c6bdebd6.tar.bz2
portage-idfetch-8f360f92e67301f4621dd30cd5e3e2c0c6bdebd6.zip
Add a help string for --debug.
svn path=/main/trunk/; revision=10711
-rwxr-xr-xbin/ebuild2
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/ebuild b/bin/ebuild
index 75151b41..a91a7858 100755
--- a/bin/ebuild
+++ b/bin/ebuild
@@ -17,7 +17,7 @@ force_help = "When used together with the digest or manifest " + \
"that do not already exist in ${DISTDIR} will be automatically fetched."
parser.add_option("--force", help=force_help, action="store_true", dest="force")
-parser.add_option("--debug", action="store_true", dest="debug")
+parser.add_option("--debug", help="show debug output", action="store_true", dest="debug")
opts, pargs = parser.parse_args(args=sys.argv[1:])