Fix 'repoman --ask' to not require an argument.
authorMichał Górny <gentoo@mgorny.alt.pl>
Mon, 12 Jul 2010 08:17:53 +0000 (10:17 +0200)
committerZac Medico <zmedico@gentoo.org>
Mon, 12 Jul 2010 08:20:57 +0000 (01:20 -0700)
Overnight patches have the tendency to be bugged. Now 'repoman --ask'
should work like a normal flag.

bin/repoman

index 3532c4b2b6f5122e14c001eb449bad0835275fe8..8834b642bd7b4db21fe565b0f2f3476f48fb0d29 100755 (executable)
@@ -164,7 +164,7 @@ def ParseArgs(args, qahelp):
        parser.description += "\nDistributed under the terms of the GNU General Public License v2"
        parser.description += "\nmodes: " + " | ".join(map(green,mode_keys))
 
-       parser.add_option('-a', '--ask', dest='ask',
+       parser.add_option('-a', '--ask', dest='ask', action='store_true', default=False,
                help='Request a confirmation before commiting')
 
        parser.add_option('-m', '--commitmsg', dest='commitmsg',