fixed output of lat/long helper + version bump
This commit is contained in:
parent
a51afbc82a
commit
bf9918d69c
2 changed files with 3 additions and 3 deletions
|
@ -1,2 +1,2 @@
|
||||||
VERSION = 1.6
|
VERSION = 1.7
|
||||||
BRANCH = 'nightly'
|
BRANCH = 'pre-nightly'
|
||||||
|
|
|
@ -29,7 +29,7 @@ class GeoIPHandler(object):
|
||||||
def lookup(self, ipaddress):
|
def lookup(self, ipaddress):
|
||||||
ip = ipaddress
|
ip = ipaddress
|
||||||
self.logger.debug('Getting lat/long for Tautulli stream using ip with last octet ending in %s',
|
self.logger.debug('Getting lat/long for Tautulli stream using ip with last octet ending in %s',
|
||||||
ip.split('.')[-1:])
|
ip.split('.')[-1:][0])
|
||||||
return self.reader.city(ip)
|
return self.reader.city(ip)
|
||||||
|
|
||||||
def update(self):
|
def update(self):
|
||||||
|
|
Loading…
Reference in a new issue