Refs #2443 -- fixed format_dtdelta on SQLite

A test failed on Python 2 32-bit.
This commit is contained in:
Anssi Kääriäinen 2014-12-23 12:01:58 +02:00 committed by Tim Graham
parent 962bb9b6bd
commit 227a4c48be
1 changed files with 2 additions and 2 deletions

View File

@ -599,12 +599,12 @@ def _sqlite_format_dtdelta(conn, lhs, rhs):
- A string representing a datetime
"""
try:
if isinstance(lhs, int):
if isinstance(lhs, six.integer_types):
lhs = str(decimal.Decimal(lhs) / decimal.Decimal(1000000))
real_lhs = parse_duration(lhs)
if real_lhs is None:
real_lhs = backend_utils.typecast_timestamp(lhs)
if isinstance(rhs, int):
if isinstance(rhs, six.integer_types):
rhs = str(decimal.Decimal(rhs) / decimal.Decimal(1000000))
real_rhs = parse_duration(rhs)
if real_rhs is None: