소스 검색

[locations] Fix typo in settings

Colin Powell 1 년 전
부모
커밋
f4d00b4a22
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      vrobbler/apps/locations/models.py

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

@@ -15,7 +15,7 @@ BNULL = {"blank": True, "null": True}
 User = get_user_model()
 
 GEOLOC_ACCURACY = int(getattr(settings, "GEOLOC_ACCURACY", 4))
-GEOLOC_PROXIMITY = Decimal(getattr(settings, "GEOLOC_ACCURACY", "0.0001"))
+GEOLOC_PROXIMITY = Decimal(getattr(settings, "GEOLOC_PROXIMITY", "0.00001"))
 
 
 class GeoLocation(ScrobblableMixin):