From f54042f194a91b0590d798338a6e43b8a3c4d20d Mon Sep 17 00:00:00 2001 From: Adrian Sampson Date: Fri, 8 Feb 2019 18:18:30 -0800 Subject: [PATCH] Make a comment into a full sentence --- beetsplug/discogs.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/beetsplug/discogs.py b/beetsplug/discogs.py index a5208f4f8..d7797e409 100644 --- a/beetsplug/discogs.py +++ b/beetsplug/discogs.py @@ -73,7 +73,8 @@ class DiscogsPlugin(BeetsPlugin): # Try using a configured user token (bypassing OAuth login). user_token = self.config['user_token'].as_str() if user_token: - # rate limit for authenticated users is 60 per minute + # The rate limit for authenticated users goes up to 60 + # requests per minute. self.rate_limit_per_minute = 60 self.discogs_client = Client(USER_AGENT, user_token=user_token) return