Skip to content

Commit

Permalink
update for bugzilla.rst
Browse files Browse the repository at this point in the history
  • Loading branch information
K-Gazdikova committed Jun 15, 2017
1 parent ead1f38 commit 133aa4b
Showing 1 changed file with 9 additions and 9 deletions.
18 changes: 9 additions & 9 deletions read-the-docs/source/Bugzilla.rst
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ documentation for more information on custom fields:
http://bugzilla.readthedocs.io/en/latest/api/index.html

Methods
-------
^^^^^^^

- `create() <#create>`__
- `edit() <#edit>`__
Expand All @@ -25,7 +25,7 @@ Methods
- `add_attachment() <#add_attachment>`__

create()
~~~~~~~~
--------

``create(self, summary, description, \*\*kwargs)``

Expand Down Expand Up @@ -55,7 +55,7 @@ particular Bugzilla instance during ticket creation:
groups='GroupName'
edit()
~~~~~~
------

``edit(self, \*\*kwargs)``

Expand All @@ -82,7 +82,7 @@ particular Bugzilla instance during ticket editing:
groups='Group Name'
add_comment()
~~~~~~~~~~~~~
-------------

``add_comment(self, comment,\*\*kwargs )``

Expand All @@ -94,7 +94,7 @@ specify comment options.
t.add_comment('Test comment')
change_status()
~~~~~~~~~~~~~~~
---------------

``change\_status(self, status, \*\*kwargs)``

Expand All @@ -109,7 +109,7 @@ bug ID.
t.change_status('CLOSED', resolution='DUPLICATE', dupe_of='<bug_id>')
remove_cc()
~~~~~~~~~~~
-----------

``remove_cc(self, user)``

Expand All @@ -122,7 +122,7 @@ users.
t.remove_cc('username@mail.com')
add_cc()
~~~~~~~~
--------

``add_cc(self, user)``

Expand All @@ -135,7 +135,7 @@ users.
t.add_cc(['username1@mail.com', 'username2@mail.com'])
add_attachment()
~~~~~~~~~~~~~~~~
----------------

``add_attachment(self, file\_name, data, summary, \*\*kwargs )``

Expand All @@ -149,7 +149,7 @@ specify additional attachment options.
summary='A short string describing the attachment.')
Examples
--------
^^^^^^^^

ticketutil.bugzilla code examples
---------------------------------
Expand Down

0 comments on commit 133aa4b

Please sign in to comment.