1
0
Fork 0
mirror of synced 2024-10-01 09:41:03 +13:00
This commit is contained in:
OMEGARAZER 2023-06-05 20:44:46 -04:00
parent a8c757072b
commit 62fe08db13
No known key found for this signature in database
GPG key ID: D89925310D306E35

View file

@ -50,7 +50,7 @@ class OAuth2Authenticator:
client_id=self.client_id, client_id=self.client_id,
client_secret=self.client_secret, client_secret=self.client_secret,
) )
state = str(random.randint(0, 65000)) state = str(random.randint(0, 65000)) # noqa: S311
url = reddit.auth.url(self.scopes, state, "permanent") url = reddit.auth.url(self.scopes, state, "permanent")
logger.warning("Authentication action required before the program can proceed") logger.warning("Authentication action required before the program can proceed")
logger.warning(f"Authenticate at {url}") logger.warning(f"Authenticate at {url}")