From 704d7167015c373ecb387e46bc56c9190c10f0e8 Mon Sep 17 00:00:00 2001 From: Will Woods Date: Fri, 15 Aug 2008 12:43:59 -0400 Subject: Fix typo in _setassignee --- bugzilla/bugzilla3.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'bugzilla') 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. -- cgit