[tor-commits] [sbws/master] fix: mistaken parenthesis in deepcopy
juga at torproject.org
juga at torproject.org
Thu Mar 21 18:30:42 UTC 2019
commit fa6d18b59193e51597a9ae3bf5d0e28c4433bbe0
Author: juga0 <juga at 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):
More information about the tor-commits
mailing list