filters/date.py [31:38]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    if timestamp_string and timestamp_string != '':
        if isinstance(timestamp_string, int):  # Unix time
            dt = datetime.utcfromtimestamp(timestamp_string)
        else:
            parsed = parsedatetime.Calendar(
                version=parsedatetime.VERSION_CONTEXT_STYLE).parse(
                    timestamp_string)
            if len(parsed) > 1:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



filters/date.py [48:55]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    if timestamp_string and timestamp_string != '':
        if isinstance(timestamp_string, int):  # Unix time
            dt = datetime.utcfromtimestamp(timestamp_string)
        else:
            parsed = parsedatetime.Calendar(
                version=parsedatetime.VERSION_CONTEXT_STYLE).parse(
                    timestamp_string)
            if len(parsed) > 1:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



