blob: aee7b5889cac0d63580c00ac34dd0cf7ac3744cf (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
|
#!/usr/bin/python
from RepSys import Error, config
from RepSys.command import *
import sys
import getopt
HELP = """\
Usage: repsys authoremail [OPTIONS] AUTHOR
Options:
-h Show this message
Examples:
repsys authoremail john
"""
def parse_options():
parser = OptionParser(help=HELP)
opts, args = parser.parse_args()
if len(args) != 1:
raise Error, "invalid arguments"
opts.author = args[0]
return opts
def print_author_email(author):
email = config.get("users", author)
if not email:
raise Error, "author not found"
print email
def main():
do_command(parse_options, print_author_email)
# vim:et:ts=4:sw=4
|