Skip to content

Commit 27d073d

Browse files
author
Gonchik Tsymzhitov
committed
Revert "Setting api_version=cloud when Cloud=true (#532)"
This reverts commit b4082eb.
1 parent 6846cc3 commit 27d073d

File tree

2 files changed

+0
-5
lines changed

2 files changed

+0
-5
lines changed

README.rst

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -38,9 +38,6 @@ Here's a short example of how to create a Confluence page:
3838
3939
print(status)
4040
41-
(Note that for Confluence Cloud, some API calls are different, so you'll
42-
want to add cloud=True to the Confluence() connection.)
43-
4441
And here's another example of how to get issues from Jira using JQL Query:
4542

4643
.. code-block:: python

atlassian/rest_client.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,8 +28,6 @@ def __init__(self, url, username=None, password=None, timeout=60, api_root='rest
2828
and '/wiki' not in url \
2929
and self.__class__.__name__ in 'Confluence':
3030
url = self.url_joiner(url, '/wiki')
31-
if (cloud == True):
32-
api_version = 'cloud'
3331
self.url = url
3432
self.username = username
3533
self.password = password

0 commit comments

Comments
 (0)