From 1a616cf81c0cdb3ed10210cca7abdadb71969f5d Mon Sep 17 00:00:00 2001 From: Aarni Koskela Date: Wed, 25 Jan 2023 21:31:32 +0200 Subject: [PATCH] Fix unbound `exc` in babel.dates See https://stackoverflow.com/a/24271786/51685 --- babel/dates.py | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/babel/dates.py b/babel/dates.py index ce79318d0..f5d996e5e 100644 --- a/babel/dates.py +++ b/babel/dates.py @@ -243,18 +243,17 @@ def get_timezone(zone: str | datetime.tzinfo | None = None) -> datetime.tzinfo: if not isinstance(zone, str): return zone - exc = None if pytz: try: return pytz.timezone(zone) - except pytz.UnknownTimeZoneError as exc: # noqa: F841 - pass + except pytz.UnknownTimeZoneError as e: + exc = e else: assert zoneinfo try: return zoneinfo.ZoneInfo(zone) - except zoneinfo.ZoneInfoNotFoundError as exc: # noqa: F841 - pass + except zoneinfo.ZoneInfoNotFoundError as e: + exc = e raise LookupError(f"Unknown timezone {zone}") from exc