Show
Ignore:
Timestamp:
12/24/06 07:37:46 (2 years ago)
Author:
athomas
Message:

XmlRpcPlugin:

Applied patches from gotoh and stp, thanks. Closes #434 and #845.

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • xmlrpcplugin/0.10/tracrpc/util.py

    r1188 r1735  
    33def to_timestamp(datetime): 
    44    """ Convert xmlrpclib.DateTime string representation to UNIX timestamp. """ 
    5     return time.mktime(time.strptime(datetime.value, '%Y%m%dT%H:%M:%S')) 
     5    return time.mktime(time.strptime('%s UTC' % datetime.value, '%Y%m%dT%H:%M:%S %Z')) - time.timezone