summaryrefslogtreecommitdiffstats
path: root/bugzilla
diff options
context:
space:
mode:
authorWill Woods <wwoods@redhat.com>2008-08-15 12:43:59 -0400
committerWill Woods <wwoods@redhat.com>2008-08-15 12:43:59 -0400
commit704d7167015c373ecb387e46bc56c9190c10f0e8 (patch)
treed7673a65bb49837ce33ee4a3684790a5849c4943 /bugzilla
parentd4f2581e5cb6fa11b9510c2e0a3ea6e52411fec4 (diff)
downloadpython-bugzilla-704d7167015c373ecb387e46bc56c9190c10f0e8.tar.gz
python-bugzilla-704d7167015c373ecb387e46bc56c9190c10f0e8.tar.xz
python-bugzilla-704d7167015c373ecb387e46bc56c9190c10f0e8.zip
Fix typo in _setassignee
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.