From 63c2faf7decd670bb09de6a6c27d762e9548bd0c Mon Sep 17 00:00:00 2001 From: Greg Barker Date: Fri, 23 Aug 2024 05:23:57 -0700 Subject: [PATCH] Fix argument name (#1444) --- docs/confluence.rst | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/confluence.rst b/docs/confluence.rst index 3d375e5b7..6674cec8b 100644 --- a/docs/confluence.rst +++ b/docs/confluence.rst @@ -120,8 +120,8 @@ Page actions # automatically version the new file and keep the old one confluence.attach_content(content, name=None, content_type=None, page_id=None, title=None, space=None, comment=None) - # Download attachments from a page to local system. If download_path is None, current working directory will be used. - confluence.download_attachments_from_page(page_id, download_path=None) + # Download attachments from a page to local system. If path is None, current working directory will be used. + confluence.download_attachments_from_page(page_id, path=None) # Remove completely a file if version is None or delete version confluence.delete_attachment(page_id, filename, version=None)