Commit 227a4c48 authored by Anssi Kääriäinen's avatar Anssi Kääriäinen Committed by Tim Graham
Browse files

Refs #2443 -- fixed format_dtdelta on SQLite

A test failed on Python 2 32-bit.
parent 962bb9b6
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -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: