summaryrefslogtreecommitdiff
path: root/lib/sqlalchemy/dialects/postgresql/constraints.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/postgresql/constraints.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/postgresql/constraints.py')
-rw-r--r--lib/sqlalchemy/dialects/postgresql/constraints.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/sqlalchemy/dialects/postgresql/constraints.py b/lib/sqlalchemy/dialects/postgresql/constraints.py
index 02d7a8998..e8ebc75dd 100644
--- a/lib/sqlalchemy/dialects/postgresql/constraints.py
+++ b/lib/sqlalchemy/dialects/postgresql/constraints.py
@@ -13,7 +13,8 @@ class ExcludeConstraint(ColumnCollectionConstraint):
Defines an EXCLUDE constraint as described in the `postgres
documentation`__.
- __ http://www.postgresql.org/docs/9.0/static/sql-createtable.html#SQL-CREATETABLE-EXCLUDE
+ __ http://www.postgresql.org/docs/9.0/\
+static/sql-createtable.html#SQL-CREATETABLE-EXCLUDE
"""
__visit_name__ = 'exclude_constraint'