From 54632f64194e9d930c7d15ffddf25670e5fde5ab Mon Sep 17 00:00:00 2001 From: Will Woods Date: Mon, 18 Aug 2008 16:25:25 -0400 Subject: Fix syntax error --- bugzilla/bugzilla3.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bugzilla/bugzilla3.py b/bugzilla/bugzilla3.py index a06e58c..b2947f4 100644 --- a/bugzilla/bugzilla3.py +++ b/bugzilla/bugzilla3.py @@ -275,7 +275,7 @@ class RHBugzilla32(Bugzilla32): else: r = self._getbug(id) if which not in r: - raise ValueError, "No such whiteboard %s in bug %s" % + raise ValueError, "No such whiteboard %s in bug %s" % \ (which,str(id)) wb = r[which] if action == 'prepend': -- cgit