Skip to content

Commit 61373cc

Browse files
committed
review confluence module
1 parent 4afd5c3 commit 61373cc

File tree

3 files changed

+2
-2
lines changed

3 files changed

+2
-2
lines changed
File renamed without changes.

examples/confluence/confluence_nested_error.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# coding=utf-8
22
from atlassian import Confluence
3-
from atlassian.confluence import ApiError
3+
from atlassian.confluence_old import ApiError
44

55
""" This example shows a way to get the real reason for an exception"""
66
try:

tests/test_confluence_advanced_mode.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -103,7 +103,7 @@ def tearDown(self):
103103
self.confluence.remove_page(page_id=page_id)
104104
except ApiError as e:
105105
if e.args[0].startswith("There is no content with the given id"):
106-
# Page was probably already deleted
106+
# The Page was probably already deleted
107107
pass
108108
else:
109109
raise e

0 commit comments

Comments
 (0)