aboutsummaryrefslogtreecommitdiffstats
path: root/libbe/cmdutil.py
blob: 4cc7d128b928f979e07601810d6dd5516767e933 (plain) (blame)
1
2
3
4
5
6
def unique_name(bug, bugs):
    return bug.name

class UserError(Exception):
    def __init__(self, msg):
        Exception.__init__(self, msg)