summaryrefslogtreecommitdiffstats
path: root/bugzilla.py
diff options
context:
space:
mode:
authorWill Woods <wwoods@redhat.com>2007-09-12 17:07:39 -0400
committerWill Woods <wwoods@redhat.com>2007-09-12 17:07:39 -0400
commit121944fbc76df4a6ab5e3f41e01b56f14a75ca0c (patch)
treeedfda37c06c95bddb5ad58f20168baed6a15a947 /bugzilla.py
parentf34c7c7b9fa218fef598e5f782a8e0e2bd511dab (diff)
downloadpython-bugzilla-121944fbc76df4a6ab5e3f41e01b56f14a75ca0c.tar.gz
python-bugzilla-121944fbc76df4a6ab5e3f41e01b56f14a75ca0c.tar.xz
python-bugzilla-121944fbc76df4a6ab5e3f41e01b56f14a75ca0c.zip
rename Bug.tags() back to Bug.gettags()
Diffstat (limited to 'bugzilla.py')
-rw-r--r--bugzilla.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/bugzilla.py b/bugzilla.py
index 77ae25c..0988419 100644
--- a/bugzilla.py
+++ b/bugzilla.py
@@ -498,7 +498,7 @@ class Bug(object):
self.appendwhiteboard(tag,which)
else:
self.setwhiteboard(tag,which)
- def tags(self,which='status'):
+ def gettags(self,which='status'):
'''Get a list of tags (basically just whitespace-split the given
whiteboard)'''
return self.getwhiteboard(which).split()