remove incorrect use of b'' string

There's no need to check on python2 that a string in os.environ is a
bytestring, and it breaks hard on python3.
This commit is contained in:
Eli Schwartz 2019-02-05 00:17:43 -05:00
parent 7640a27b13
commit acd683b3ac

View File

@ -87,7 +87,7 @@ else:
filesystem_encoding = 'utf-8'
DEBUG = b'CALIBRE_DEBUG' in os.environ
DEBUG = 'CALIBRE_DEBUG' in os.environ
def debug():