diff options
author | Erik Johnston <erik@matrix.org> | 2015-04-29 11:44:48 +0100 |
---|---|---|
committer | Erik Johnston <erik@matrix.org> | 2015-04-29 11:44:48 +0100 |
commit | a08bf11138b8adc37fcc80e4884e11e5546abcb5 (patch) | |
tree | 79d62a31f84db7bab52358ce98d1e0b39fbd15bc | |
parent | Check that postgres database has correct charset set (diff) | |
download | synapse-a08bf11138b8adc37fcc80e4884e11e5546abcb5.tar.xz |
Appease PEP8
-rw-r--r-- | synapse/storage/engines/__init__.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/synapse/storage/engines/__init__.py b/synapse/storage/engines/__init__.py index ab070f3428..f661e4803c 100644 --- a/synapse/storage/engines/__init__.py +++ b/synapse/storage/engines/__init__.py @@ -14,6 +14,8 @@ # limitations under the License. from ._base import IncorrectDatabaseSetup +assert IncorrectDatabaseSetup # Appease PEP8 + from .postgres import PostgresEngine from .sqlite3 import Sqlite3Engine |