From 724f9dcbe77da1aaf5c9094db53c2eff455ff622 Mon Sep 17 00:00:00 2001 From: inso <insomniak.fr@gmaiL.com> Date: Thu, 17 Mar 2016 20:15:39 +0100 Subject: [PATCH] Fix crash in loading of txhistory --- src/sakia/core/txhistory.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/sakia/core/txhistory.py b/src/sakia/core/txhistory.py index 3efc5562..39cca423 100644 --- a/src/sakia/core/txhistory.py +++ b/src/sakia/core/txhistory.py @@ -40,7 +40,7 @@ class TxHistory(): data_sent = data['transfers'] for s in data_sent: - self._transfers.append(Transfer.load(s, version)) + self._transfers.append(Transfer.load(s)) for s in data['sources']: self.available_sources.append(s.copy()) -- GitLab