Skip to content

Commit

Permalink
Bug catching in progress...
Browse files Browse the repository at this point in the history
  • Loading branch information
o355 committed Feb 26, 2017
1 parent 6b1769b commit 4d9b0f5
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -61,18 +61,21 @@

try:
import colorama
coloramaInstalled = True
except ImportError:
coloramaInstalled = False
neededLibraries = neededLibraries + 1

try:
import geopy
geopyInstalled = True
except ImportError:
geopyInstalled = False
neededLibraries = neededLibraries + 1

try:
import geocoder
geocoderInstalled = True
except ImportError:
geocoderInstalled = False
neededLibraries = neededLibraries + 1
Expand Down

0 comments on commit 4d9b0f5

Please sign in to comment.