summaryrefslogtreecommitdiffstats
path: root/bugzilla
diff options
context:
space:
mode:
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 c64c43f..bcefcde 100644
--- a/bugzilla/bugzilla3.py
+++ b/bugzilla/bugzilla3.py
@@ -205,7 +205,7 @@ class Bugzilla32(Bugzilla3):
returns: [$id, $mailresults]'''
# drop empty items
update = dict([(k,v) for k,v in data.iteritems() if v != ''])
- return self._update_bug(ids=[id],updates=data)
+ return self._update_bug(ids=[id],updates=update)
def _updatedeps(self,id,blocked,dependson,action):
'''Update the deps (blocked/dependson) for the given bug.