diff options
| author | Andrea Grandi <a.grandi@gmail.com> | 2015-05-24 15:56:48 +0100 |
|---|---|---|
| committer | Florian Apolloner <florian@apolloner.eu> | 2015-05-24 17:32:16 +0200 |
| commit | 43b2d88a5b9cfb151ccf7ac861f2750e70c0e2c4 (patch) | |
| tree | 005355dd476cfa4cbde0bf52a043fccc15cb0335 /django/db/backends/postgresql_psycopg2/base.py | |
| parent | 9ef2615d4968ed52dbd88a19f03746a2f16c7511 (diff) | |
Fixed #24844 -- Corrected has_changed implementation for HStoreField.
Diffstat (limited to 'django/db/backends/postgresql_psycopg2/base.py')
| -rw-r--r-- | django/db/backends/postgresql_psycopg2/base.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/django/db/backends/postgresql_psycopg2/base.py b/django/db/backends/postgresql_psycopg2/base.py index af616e48c4..6c0794d92d 100644 --- a/django/db/backends/postgresql_psycopg2/base.py +++ b/django/db/backends/postgresql_psycopg2/base.py @@ -199,6 +199,7 @@ class DatabaseWrapper(BaseDatabaseWrapper): if conn_timezone_name != self.timezone_name: cursor = self.connection.cursor() try: + print "UPS" cursor.execute(self.ops.set_time_zone_sql(), [self.timezone_name]) finally: cursor.close() |
