Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix download_attachments_from_page documentation #1287

Merged
merged 1 commit into from
Jan 6, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions docs/confluence.rst
Original file line number Diff line number Diff line change
Expand Up @@ -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.
confluence.download_attachments(page_id, download_path, path=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)

# Remove completely a file if version is None or delete version
confluence.delete_attachment(page_id, filename, version=None)
Expand Down
Loading