Author: adc
Date: Tue Sep 3 04:32:49 2013
New Revision: 1519554
URL: http://svn.apache.org/r1519554
Log:
Fixed variable name
Modified:
labs/panopticon/bin/check-email
Modified: labs/panopticon/bin/check-email
URL:
http://svn.apache.org/viewvc/labs/panopticon/bin/check-email?rev=1519554&r1=1519553&r2=1519554&view=diff
==============================================================================
--- labs/panopticon/bin/check-email (original)
+++ labs/panopticon/bin/check-email Tue Sep 3 04:32:49 2013
@@ -71,10 +71,10 @@ def main(cli):
lookup_parser.add_argument('email_alias', help='The email alias to lookup')
lookup_parser.set_defaults(func=cmd_lookup)
- reject_parser = subparsers.add_parser('check', description='Lists the
projects user is member of')
- reject_parser.add_argument('email_alias', help='The email alias to lookup')
- reject_parser.add_argument('mailing_list', help='The mailing list email
alias is attempting to join')
- reject_parser.set_defaults(func=cmd_check)
+ check_parser = subparsers.add_parser('check', description='Lists the
projects user is member of')
+ check_parser.add_argument('email_alias', help='The email alias to lookup')
+ check_parser.add_argument('mailing_list', help='The mailing list email
alias is attempting to join')
+ check_parser.set_defaults(func=cmd_check)
with cli.run():
cli.args.func(cli.args)
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]