summaryrefslogtreecommitdiff
path: root/lib/sqlalchemy/dialects/mysql/base.py
diff options
context:
space:
mode:
authorMike Bayer <mike_mp@zzzcomputing.com>2015-03-20 19:53:12 -0400
committerMike Bayer <mike_mp@zzzcomputing.com>2015-03-20 19:53:12 -0400
commit3ae00fea903b3403c1900e9b9f440305362dd26c (patch)
tree42255fd7192a22b79d51be449aa9f2878a1482fe /lib/sqlalchemy/dialects/mysql/base.py
parent1bcd99bec9eb0d17dba76214d278d6012f35f41b (diff)
downloadsqlalchemy-3ae00fea903b3403c1900e9b9f440305362dd26c.tar.gz
- Repaired the commit for issue #2771 which was inadvertently commented
out. - add __backend__ to the dialect suite so that it runs on CI. - will be 1.0.0b3
Diffstat (limited to 'lib/sqlalchemy/dialects/mysql/base.py')
-rw-r--r--lib/sqlalchemy/dialects/mysql/base.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/sqlalchemy/dialects/mysql/base.py b/lib/sqlalchemy/dialects/mysql/base.py
index 8727154f1..a74b20ac4 100644
--- a/lib/sqlalchemy/dialects/mysql/base.py
+++ b/lib/sqlalchemy/dialects/mysql/base.py
@@ -3351,7 +3351,7 @@ class _DecodingRowProxy(object):
def __init__(self, rowproxy, charset):
self.rowproxy = rowproxy
- self.charset = charset #self._encoding_compat.get(charset, charset)
+ self.charset = self._encoding_compat.get(charset, charset)
def __getitem__(self, index):
item = self.rowproxy[index]