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()