From dc3a77f14f5a9d09ae4def0177a1475d4b2158a1 Mon Sep 17 00:00:00 2001 From: Colin Powell Date: Sun, 21 Apr 2024 13:29:36 -0400 Subject: [PATCH] [scrobbles] Fix typo in timezone saving --- vrobbler/apps/scrobbles/models.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/vrobbler/apps/scrobbles/models.py b/vrobbler/apps/scrobbles/models.py index 94d05f6..42660de 100644 --- a/vrobbler/apps/scrobbles/models.py +++ b/vrobbler/apps/scrobbles/models.py @@ -559,7 +559,7 @@ class Scrobble(TimeStampedModel): timezone = settings.TIME_ZONE if self.user and self.user.profile: timezone = self.user.profile.timezone - self.timzeone = timezone + self.timezone = timezone # Microseconds mess up Django's filtering, and we don't need be that specific if self.timestamp: