From 2b0beefb0d6f69bf1a391d8185b8537e49c3e8d1 Mon Sep 17 00:00:00 2001 From: secret-rare Date: Sat, 7 Mar 2026 18:54:47 +0000 Subject: [PATCH] deploy: 83fbf9a91e5d59d32f7a61c7f787a69bdc857363 --- docs/rbx_upload.html | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/rbx_upload.html b/docs/rbx_upload.html index 7413fdc..ecae2be 100644 --- a/docs/rbx_upload.html +++ b/docs/rbx_upload.html @@ -537,7 +537,7 @@ rbx_upload 298 if response.status_code == 429: 299 raise RateLimitError("Rate limit hit during collectible publish.") 300 if response.status_code in (401, 403): -301 raise AuthError("Not authorized to publish this collectible.") +301 raise AuthError(f"Not authorized to publish this collectible ({response.status_code}): {response.text}") 302 303 response.raise_for_status() 304 data = response.json() @@ -955,7 +955,7 @@ failures in the returned BatchResult.

298 if response.status_code == 429: 299 raise RateLimitError("Rate limit hit during collectible publish.") 300 if response.status_code in (401, 403): -301 raise AuthError("Not authorized to publish this collectible.") +301 raise AuthError(f"Not authorized to publish this collectible ({response.status_code}): {response.text}") 302 303 response.raise_for_status() 304 data = response.json()