summaryrefslogtreecommitdiffstats
path: root/bugzilla
diff options
context:
space:
mode:
authorWill Woods <wwoods@redhat.com>2008-08-18 16:25:25 -0400
committerWill Woods <wwoods@redhat.com>2008-08-18 16:25:25 -0400
commit54632f64194e9d930c7d15ffddf25670e5fde5ab (patch)
tree17e99029ccaa7c86d74f90c5d6b92aab6181a2cf /bugzilla
parent9159247d71a0ce134fd1b443524edaa05ecf859d (diff)
downloadpython-bugzilla-54632f64194e9d930c7d15ffddf25670e5fde5ab.tar.gz
python-bugzilla-54632f64194e9d930c7d15ffddf25670e5fde5ab.tar.xz
python-bugzilla-54632f64194e9d930c7d15ffddf25670e5fde5ab.zip
Fix syntax error
Diffstat (limited to 'bugzilla')
-rw-r--r--bugzilla/bugzilla3.py2
1 files changed, 1 insertions, 1 deletions
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':