mirror of
https://git.anonymousland.org/anonymousland/synapse.git
synced 2024-12-26 03:39:27 -05:00
Fix pep8 error on psycopg2cffi hack
This commit is contained in:
parent
89de934981
commit
d1e56cfcd1
@ -32,12 +32,11 @@ def create_engine(database_config):
|
||||
engine_class = SUPPORTED_MODULE.get(name, None)
|
||||
|
||||
if engine_class:
|
||||
needs_pypy_hack = (name == "psycopg2" and
|
||||
platform.python_implementation() == "PyPy")
|
||||
if needs_pypy_hack:
|
||||
module = importlib.import_module("psycopg2cffi")
|
||||
else:
|
||||
module = importlib.import_module(name)
|
||||
# pypy requires psycopg2cffi rather than psycopg2
|
||||
if (name == "psycopg2" and
|
||||
platform.python_implementation() == "PyPy"):
|
||||
name = "psycopg2cffi"
|
||||
module = importlib.import_module(name)
|
||||
return engine_class(module, database_config)
|
||||
|
||||
raise RuntimeError(
|
||||
|
Loading…
Reference in New Issue
Block a user