From 051235b5b81c09727551841561524c890070c9ef Mon Sep 17 00:00:00 2001 From: Gobberwart Date: Fri, 2 Sep 2016 09:30:02 +1000 Subject: [PATCH] 'red' not supported by logger --- pokemongo_bot/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pokemongo_bot/__init__.py b/pokemongo_bot/__init__.py index e40a0e5718..84d5ffe278 100644 --- a/pokemongo_bot/__init__.py +++ b/pokemongo_bot/__init__.py @@ -1351,7 +1351,7 @@ def _load_recent_forts(self): with open(cached_forts_path) as f: cached_recent_forts = json.load(f) except (IOError, ValueError) as e: - self.logger.info('[x] Error while opening cached forts: %s' % e, 'red') + self.logger.info('[x] Error while opening cached forts: %s' % e) pass except: raise FileIOException("Unexpected error opening {}".cached_forts_path)