From a50999b37b014b78a3f2db886029255452e0eb07 Mon Sep 17 00:00:00 2001 From: baztian Date: Thu, 2 Feb 2012 15:56:00 +0100 Subject: [PATCH] Fixed typo --- src/jaydebeapi/dbapi2.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/jaydebeapi/dbapi2.py b/src/jaydebeapi/dbapi2.py index 6255fe0..777426c 100644 --- a/src/jaydebeapi/dbapi2.py +++ b/src/jaydebeapi/dbapi2.py @@ -297,7 +297,7 @@ class Cursor(object): sqltype = self._meta.getColumnType(col) # print sqltype # TODO: Oracle 11 will read a oracle.sql.TIMESTAMP - # which can't be converted to string easyly + # which can't be converted to string easily v = self._rs.getObject(col) if v: converter = self._converters.get(sqltype)