summaryrefslogtreecommitdiff
path: root/lib/sqlalchemy/dialects/postgres.py
diff options
context:
space:
mode:
authorBrian Jarrett <celttechie@gmail.com>2014-07-13 21:07:06 -0600
committerBrian Jarrett <celttechie@gmail.com>2014-07-13 21:07:06 -0600
commitd81a256a5c6912f6b2a0de85c29079d8c329e275 (patch)
treeb745227d0154def49c44eb89d8b7de7a4bd51fbc /lib/sqlalchemy/dialects/postgres.py
parent551680d06e7a0913690414c78d6dfdb590f1588f (diff)
downloadsqlalchemy-pr/111.tar.gz
Manual fixes for style E501 errors, etc. in dialects packagepr/111
Diffstat (limited to 'lib/sqlalchemy/dialects/postgres.py')
-rw-r--r--lib/sqlalchemy/dialects/postgres.py5
1 files changed, 3 insertions, 2 deletions
diff --git a/lib/sqlalchemy/dialects/postgres.py b/lib/sqlalchemy/dialects/postgres.py
index f9725b2a5..f813e0003 100644
--- a/lib/sqlalchemy/dialects/postgres.py
+++ b/lib/sqlalchemy/dialects/postgres.py
@@ -9,8 +9,9 @@
from sqlalchemy.util import warn_deprecated
warn_deprecated(
- "The SQLAlchemy PostgreSQL dialect has been renamed from 'postgres' to 'postgresql'. "
- "The new URL format is postgresql[+driver]://<user>:<pass>@<host>/<dbname>"
+ "The SQLAlchemy PostgreSQL dialect has been renamed from 'postgres' to "
+ "'postgresql'. The new URL format is "
+ "postgresql[+driver]://<user>:<pass>@<host>/<dbname>"
)
from sqlalchemy.dialects.postgresql import *