commit fa6d18b59193e51597a9ae3bf5d0e28c4433bbe0 Author: juga0 juga@riseup.net Date: Thu Mar 21 12:25:37 2019 +0000
fix: mistaken parenthesis in deepcopy --- sbws/lib/relaylist.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/sbws/lib/relaylist.py b/sbws/lib/relaylist.py index 6a66069..53127ef 100644 --- a/sbws/lib/relaylist.py +++ b/sbws/lib/relaylist.py @@ -209,7 +209,7 @@ class Relay: self, measurements_period=MEASUREMENTS_PERIOD): self._consensus_timestamps = \ remove_old_consensus_timestamps( - copy.deepcopy(self._consensus_timestamps, measurements_period) + copy.deepcopy(self._consensus_timestamps), measurements_period )
def update_consensus_timestamps(self, timestamp=None):
tor-commits@lists.torproject.org