Skip to content

Commit c1c305c

Browse files
committed
Confluence: add lower to the better compare differ
1 parent 4fb081b commit c1c305c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

atlassian/confluence.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1805,7 +1805,7 @@ def is_page_content_is_already_updated(self, page_id, body, title=None):
18051805
log.debug('Old Content: """%s"""', confluence_body_content)
18061806
log.debug('New Content: """%s"""', body)
18071807

1808-
if confluence_body_content.strip() == body.strip():
1808+
if confluence_body_content.strip().lower() == body.strip().lower():
18091809
log.info("Content of %s is exactly the same", page_id)
18101810
return True
18111811
else:

0 commit comments

Comments
 (0)