Skip to content

Commit f80a263

Browse files
Update expiry label from 1 month to 30 days (#185)
Since there isn't 1 true answer to how many seconds are in 1 month, making it 30 days is just easier.
1 parent df15245 commit f80a263

File tree

2 files changed

+6
-2
lines changed

2 files changed

+6
-2
lines changed

docs/changelog.rst

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,11 @@
33
44
Changelog
55
=========
6-
- :release:`9.9.0 <22th June 2023>`
6+
- :release:`9.9.2 <2nd July 2023>`
7+
- :bug:`185` Update expiry label from 1 month to 30 days in paste service.
8+
9+
10+
- :release:`9.9.1 <22nd June 2023>`
711
- :bug:`183` Push the correct changeset to pypi.
812

913

pydis_core/utils/paste_service.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@ async def send_to_paste_service(
9090

9191
log.debug(f"Sending contents of size {contents_size} bytes to paste service.")
9292
payload = {
93-
"expiry": "1month",
93+
"expiry": "30days",
9494
"long": "on", # Use a longer URI for the paste.
9595
"files": [
9696
{"name": file_name, "lexer": lexer, "content": contents},

0 commit comments

Comments
 (0)