jkakavas / creepy

A geolocation OSINT tool. Offers geolocation information gathering through social networking platforms.
http://www.geocreepy.com
GNU General Public License v3.0
413 stars 108 forks source link

Error in Instagram.py #45

Closed thomhastings closed 8 years ago

thomhastings commented 8 years ago

DEBUG:2016-05-19 12:08:13,773 In instagram.py:92: Retrieved 580 photos from instagram. ERROR:2016-05-19 12:08:13,774 In instagram.py:163: 'str' object has no attribute 'len' ERROR:2016-05-19 12:08:13,774 In instagram.py:164: Error getting locations from instagram plugin

thomhastings commented 8 years ago

Mac OS X version, fixed bug on line 155 of instagram.py: if len(str(loc['lat'])) < 4 and len(str(loc['lon']).len) < 4: to if len(str(loc['lat'])) < 4 and len(str(loc['lon'])) < 4: