mirror of
https://github.com/Tautulli/Tautulli.git
synced 2025-07-10 15:32:38 -07:00
Fix GeoLite2 update log message to correct number of days from setting
This commit is contained in:
parent
badbfdc4c1
commit
e321c5b197
1 changed files with 2 additions and 1 deletions
|
@ -591,7 +591,8 @@ def update_geoip_db():
|
||||||
now = int(time.time())
|
now = int(time.time())
|
||||||
if now - plexpy.CONFIG.GEOIP_DB_INSTALLED >= plexpy.CONFIG.GEOIP_DB_UPDATE_DAYS * 24 * 60 * 60:
|
if now - plexpy.CONFIG.GEOIP_DB_INSTALLED >= plexpy.CONFIG.GEOIP_DB_UPDATE_DAYS * 24 * 60 * 60:
|
||||||
return install_geoip_db(update=True)
|
return install_geoip_db(update=True)
|
||||||
logger.info(u"Tautulli Helpers :: GeoLite2 database already updated within the last 30 days.")
|
logger.info(u"Tautulli Helpers :: GeoLite2 database already updated within the last %s days."
|
||||||
|
% plexpy.CONFIG.GEOIP_DB_UPDATE_DAYS)
|
||||||
|
|
||||||
|
|
||||||
def install_geoip_db(update=False):
|
def install_geoip_db(update=False):
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue