Browse Source

[scrobbles] Fix typo in timezone saving

Colin Powell 1 year ago
parent
commit
dc3a77f14f
1 changed files with 1 additions and 1 deletions
  1. 1 1
      vrobbler/apps/scrobbles/models.py

+ 1 - 1
vrobbler/apps/scrobbles/models.py

@@ -559,7 +559,7 @@ class Scrobble(TimeStampedModel):
             timezone = settings.TIME_ZONE
             timezone = settings.TIME_ZONE
             if self.user and self.user.profile:
             if self.user and self.user.profile:
                 timezone = self.user.profile.timezone
                 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
         # Microseconds mess up Django's filtering, and we don't need be that specific
         if self.timestamp:
         if self.timestamp: