diff options
| author | Rapptz <[email protected]> | 2019-04-06 20:17:12 -0400 |
|---|---|---|
| committer | Rapptz <[email protected]> | 2019-04-06 20:17:12 -0400 |
| commit | 7c5a4b67d7211d87eccc2fcd419bbf380d2f371f (patch) | |
| tree | e54c99cf6bcfb66de69f19620213000620251581 | |
| parent | Add helpers to escape markdown and mentions from text. (diff) | |
| download | discord.py-7c5a4b67d7211d87eccc2fcd419bbf380d2f371f.tar.xz discord.py-7c5a4b67d7211d87eccc2fcd419bbf380d2f371f.zip | |
Fix Attachment.save wording nit.
| -rw-r--r-- | discord/message.py | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/discord/message.py b/discord/message.py index e095ff59..d6bf23bf 100644 --- a/discord/message.py +++ b/discord/message.py @@ -95,9 +95,10 @@ class Attachment: use_cached: :class:`bool` Whether to use :attr:`proxy_url` rather than :attr:`url` when downloading the attachment. This will allow attachments to be saved after deletion - more often, which is generally deleted right after the message is deleted. - Note that this can still fail to download deleted attachments if too much time - has passed. + more often, compared to the regular URL is generally deleted right after + the message is deleted. Note that this can still fail to download + deleted attachments if too much time has passed and it does not work + on some type of attachments. Raises -------- |