I assume that by right time you mean converting timestamp to something with more meaning to humans. If that is the case then this should work:
>>> from datetime import datetime
>>> datetime.fromtimestamp(1382189138.4196026).strftime('%Y-%m-%d %H:%M:%S')
'2013-10-19 16:25:38'