gnomeExtensions: update-extensions.py fix wrong variable name

This commit is contained in:
Ryan Horiguchi 2022-04-30 16:35:25 +02:00
parent d7de07547a
commit a9e957f076
No known key found for this signature in database
GPG key ID: CA7EE98D45A1132A

View file

@ -239,7 +239,7 @@ def scrape_extensions_index() -> List[Dict[str, Any]]:
# If our page isn't "full", it must have been the last one
if response_length < 25:
logging.debug(
f"\tThis page only has {responseLength} entries, so it must be the last one."
f"\tThis page only has {response_length} entries, so it must be the last one."
)
break
except urllib.error.HTTPError as e: