File tree Expand file tree Collapse file tree 1 file changed +4
-6
lines changed Expand file tree Collapse file tree 1 file changed +4
-6
lines changed Original file line number Diff line number Diff line change @@ -38,7 +38,7 @@ Here's a short example how to create a Confluence page:
3838
3939 print (status)
4040
41- And here's another example how to get issues from Jira using JQL Query:
41+ And here's another example of how to get issues from Jira using JQL Query:
4242
4343.. code-block :: python
4444
@@ -48,13 +48,11 @@ And here's another example how to get issues from Jira using JQL Query:
4848 url = ' http://localhost:8080' ,
4949 username = ' admin' ,
5050 password = ' admin' )
51-
5251 JQL = ' project = DEMO AND status IN ("To Do", "In Progress") ORDER BY issuekey'
53-
5452 data = jira.jql(JQL )
5553 print (data)
5654
57- Also, you can use the Bitbucket module e.g. for get project list
55+ Also, you can use the Bitbucket module e.g. for getting project list
5856
5957.. code-block :: python
6058
@@ -68,7 +66,7 @@ Also, you can use the Bitbucket module e.g. for get project list
6866 data = bitbucket.project_list()
6967 print (data)
7068
71- Now you can use Jira Service Desk module. See docs.
69+ Now you can use the Jira Service Desk module. See docs.
7270Example to get your requests:
7371
7472.. code-block :: python
@@ -83,7 +81,7 @@ Example to get your requests:
8381 data = sd.get_my_customer_requests()
8482 print (data)
8583
86- If you want to see response in pretty print format json. Feel free for use construction like:
84+ If you want to see the response in pretty print format json. Feel free for use construction like:
8785
8886.. code-block :: python
8987
You can’t perform that action at this time.
0 commit comments