Comment

Changed in version 0.3.

class bugsy.Comment(**kwargs)[source]

Represents a single Bugzilla comment.

To get comments you need to do the following

>>> bugs = bugzilla.search_for.keywords("checkin-needed").search()
>>> comments = bugs[0].get_comments()
>>> comments[0].text # Returns the comment 0 of the first checkin-needed bug
id

Return the comment id that is associated with Bugzilla.

text

Return the text that is in this comment

>>> comment.text # David really likes cheese apparently