Convert the atime to float in HistoryEntry.

This commit is contained in:
Florian Bruhin 2015-03-12 08:07:40 +01:00
parent 0b975db4dd
commit 9ee19be70d

View File

@ -40,7 +40,7 @@ class HistoryEntry:
"""
def __init__(self, atime, url):
self.atime = atime
self.atime = float(atime)
self.url = url
def __repr__(self):