diff options
author | Will Woods <wwoods@redhat.com> | 2007-09-13 17:31:45 -0400 |
---|---|---|
committer | Will Woods <wwoods@redhat.com> | 2007-09-13 17:31:45 -0400 |
commit | 2dc7a518e6a10b7860ad5ca51b683fcb34243bfd (patch) | |
tree | 08631aa45afdc5fc4370c3a8dd6a586338cf88cc | |
parent | 9b82acbc0274784690756c9890cd222ded770a15 (diff) | |
download | python-bugzilla-2dc7a518e6a10b7860ad5ca51b683fcb34243bfd.tar.gz python-bugzilla-2dc7a518e6a10b7860ad5ca51b683fcb34243bfd.tar.xz python-bugzilla-2dc7a518e6a10b7860ad5ca51b683fcb34243bfd.zip |
add helpful updatecc comment
-rw-r--r-- | bugzilla.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/bugzilla.py b/bugzilla.py index 5f788e6..dad37f9 100644 --- a/bugzilla.py +++ b/bugzilla.py @@ -337,6 +337,7 @@ class Bugzilla(object): def _updatecc(self,id,cclist,action,comment='',nomail=False): '''Updates the CC list using the action and account list specified. + cclist must be a list (not a tuple!) of addresses. action may be 'add', 'remove', or 'makeexact'. comment specifies an optional comment to add to the bug. if mail is True, email will be generated for this change. |