aboutsummaryrefslogtreecommitdiffstats
path: root/libbe/bugdir.py
diff options
context:
space:
mode:
authorChris Ball <cjb@laptop.org>2009-06-25 09:53:39 -0400
committerChris Ball <cjb@laptop.org>2009-06-25 09:53:39 -0400
commitae52bd5946df9c0d59be43824b20d33819891f93 (patch)
treec4579ec93a80f5e93b4258e8771ae39405ce9ba7 /libbe/bugdir.py
parent1f746ca3f2f2745bfeae998186b4a427776359a2 (diff)
parenteeaf13d7d9c5e6fcad4689c988d4fc1806426d3f (diff)
downloadbugseverywhere-ae52bd5946df9c0d59be43824b20d33819891f93.tar.gz
Merge with W. Trevor King's tree.
Diffstat (limited to 'libbe/bugdir.py')
-rw-r--r--libbe/bugdir.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/libbe/bugdir.py b/libbe/bugdir.py
index a9ec42e..3c2c247 100644
--- a/libbe/bugdir.py
+++ b/libbe/bugdir.py
@@ -54,9 +54,9 @@ class AlreadyInitialized(Exception):
class MultipleBugMatches(ValueError):
def __init__(self, shortname, matches):
msg = ("More than one bug matches %s. "
- "Please be more specific.\n%s" % shortname, matches)
+ "Please be more specific.\n%s" % (shortname, matches))
ValueError.__init__(self, msg)
- self.shortname = shortnamename
+ self.shortname = shortname
self.matches = matches