Sanity check

This commit is contained in:
Rémi Oudin 2018-02-26 14:57:46 +01:00
parent 22017cea91
commit 236e40d359
1 changed files with 10 additions and 8 deletions

View File

@ -108,7 +108,8 @@ class History(models.Model):
""" Actually plays the history.
"""
self.played = True
runner = TorInstance(self.history)
runner = TorInstance(self.return_history())
runnner.run()
self.save()
def to_xml(self, xml_root):
@ -232,12 +233,13 @@ def generate_history(user, start_time):
current_timestamp = \
history_list[-1].timestamp + 5 * random.weibullvariate(1, 5)
for (url, timestamp) in history_list:
new_line = HistoryEntry(
search=url,
timestamp=datetime.fromtimestamp(timestamp),
history=history
)
new_line.full_clean()
new_line.save()
if len(url) < 200:
new_line = HistoryEntry(
search=url,
timestamp=datetime.fromtimestamp(timestamp),
history=history
)
new_line.full_clean()
new_line.save()
return history