1
0
Fork 0
mirror of https://github.com/munin-monitoring/contrib.git synced 2025-07-22 02:51:03 +00:00

Fix import error message for GeoIP

This commit is contained in:
daftaupe 2017-06-25 00:14:48 +02:00
parent b21eb6aab5
commit ef91313921

View file

@ -152,7 +152,7 @@ class TorPlugin(object):
import GeoIP import GeoIP
except ImportError as e: except ImportError as e:
print('no ({})'.format(e)) print('no (failed to import the required python module "GeoIP": {})'.format(e))
try: try:
with gen_controller() as controller: with gen_controller() as controller: