diff options
| author | Mike Bayer <mike_mp@zzzcomputing.com> | 2014-07-25 16:05:38 -0400 |
|---|---|---|
| committer | Mike Bayer <mike_mp@zzzcomputing.com> | 2014-07-25 16:05:38 -0400 |
| commit | b7e75172b391f728451c59c4f9eba2b79143bf66 (patch) | |
| tree | c4df03f7f58af260f8563fa41a899dbead73f599 /lib/sqlalchemy | |
| parent | 31178db91455ead5bfd4269658073c745e090569 (diff) | |
| parent | ba58708643d21106ff6f752df507c6d987e4d7b5 (diff) | |
| download | sqlalchemy-b7e75172b391f728451c59c4f9eba2b79143bf66.tar.gz | |
Merge remote-tracking branch 'origin/pr/124' into issue3141
Diffstat (limited to 'lib/sqlalchemy')
| -rw-r--r-- | lib/sqlalchemy/dialects/postgresql/base.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/sqlalchemy/dialects/postgresql/base.py b/lib/sqlalchemy/dialects/postgresql/base.py index 6f23a497b..5ff2f7c61 100644 --- a/lib/sqlalchemy/dialects/postgresql/base.py +++ b/lib/sqlalchemy/dialects/postgresql/base.py @@ -695,7 +695,7 @@ class array(expression.Tuple): self.type = ARRAY(self.type) def _bind_param(self, operator, obj): - return array(*[ + return array([ expression.BindParameter(None, o, _compared_to_operator=operator, _compared_to_type=self.type, unique=True) for o in obj |
