summaryrefslogtreecommitdiffstats
path: root/filer.py
diff options
context:
space:
mode:
authorChris Lumens <clumens@redhat.com>2008-08-27 16:15:55 -0400
committerChris Lumens <clumens@redhat.com>2008-08-27 16:15:55 -0400
commit9f58cc419e7dccf2f816cb100f5b9e72d23ade0d (patch)
treee1c9f15a2e163a28b0b05a8cac7e255aa891312e /filer.py
parent3547c35adbd15dcdf679ab4b5627a2d12530597f (diff)
downloadanaconda-9f58cc419e7dccf2f816cb100f5b9e72d23ade0d.tar.gz
anaconda-9f58cc419e7dccf2f816cb100f5b9e72d23ade0d.tar.xz
anaconda-9f58cc419e7dccf2f816cb100f5b9e72d23ade0d.zip
Fix a traceback when trying to set the status whiteboard on a bug.
Diffstat (limited to 'filer.py')
-rw-r--r--filer.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/filer.py b/filer.py
index 3e2d4295e..685fbde6d 100644
--- a/filer.py
+++ b/filer.py
@@ -154,7 +154,7 @@ class BugzillaFiler(AbstractFiler):
for (key, val) in kwargs.items():
if key.endswith("_whiteboard"):
wb = key.split("_")[0]
- whiteboards.push((wb, val))
+ whiteboards.append((wb, val))
kwargs.pop(key)
bug = self.__withBugzillaDo(lambda b: b.createbug(**kwargs))