danielfm / pybreaker

Python implementation of the Circuit Breaker pattern.
BSD 3-Clause "New" or "Revised" License
512 stars 74 forks source link

Typo - False => False #19

Closed pythons1980 closed 7 years ago

pythons1980 commented 7 years ago

Hi,

if redis package is not installed then this code raise error:

try:
    from redis.exceptions import RedisError
    HAS_REDIS_SUPPORT = True
except ImportError:
HAS_REDIS_SUPPORT = FALSE

please, rewrite FALSE to False.

danielfm commented 7 years ago

Closed in #18