aboutsummaryrefslogtreecommitdiffstats
path: root/libbe/cmdutil.py
diff options
context:
space:
mode:
Diffstat (limited to 'libbe/cmdutil.py')
-rw-r--r--libbe/cmdutil.py8
1 files changed, 1 insertions, 7 deletions
diff --git a/libbe/cmdutil.py b/libbe/cmdutil.py
index e7ded4f..ac67f3a 100644
--- a/libbe/cmdutil.py
+++ b/libbe/cmdutil.py
@@ -24,14 +24,8 @@ def get_bug(spec, bug_dir):
return matches[0]
matches = []
- for bug in bugs:
- if bug.name == spec:
- matches.append(bug)
- if len(matches) > 1:
- raise UserError("More than one bug has the name %s. Please use the"
- " uuid." % spec)
if len(matches) == 0:
- raise UserError("No bug has the name %s" % spec)
+ raise UserError("No bug matches %s" % spec)
return matches[0]
def bug_summary(bug, bugs):