summaryrefslogtreecommitdiff
path: root/lib/sqlalchemy/dialects/postgresql/base.py
diff options
context:
space:
mode:
authorÉric Lemoine <eric.lemoine@gmail.com>2012-09-12 09:14:25 +0200
committerÉric Lemoine <eric.lemoine@gmail.com>2012-09-12 09:14:25 +0200
commit1a5ebb32ec1c1ac1700fdc5a06b8c7c4a0d13b62 (patch)
treeaba746810b7e2d23b1294f17907688163575968a /lib/sqlalchemy/dialects/postgresql/base.py
parent0ffdcd98b60eab1a17e135ff42b95c2fb4965cda (diff)
downloadsqlalchemy-1a5ebb32ec1c1ac1700fdc5a06b8c7c4a0d13b62.tar.gz
remove print statement in PGDialect._get_column_info
Diffstat (limited to 'lib/sqlalchemy/dialects/postgresql/base.py')
-rw-r--r--lib/sqlalchemy/dialects/postgresql/base.py1
1 files changed, 0 insertions, 1 deletions
diff --git a/lib/sqlalchemy/dialects/postgresql/base.py b/lib/sqlalchemy/dialects/postgresql/base.py
index 4764339ac..f59aa50b4 100644
--- a/lib/sqlalchemy/dialects/postgresql/base.py
+++ b/lib/sqlalchemy/dialects/postgresql/base.py
@@ -1593,7 +1593,6 @@ class PGDialect(default.DefaultDialect):
default = match.group(1) + \
('"%s"' % sch) + '.' + \
match.group(2) + match.group(3)
- print default
column_info = dict(name=name, type=coltype, nullable=nullable,
default=default, autoincrement=autoincrement)