From b543bff63e6046fc92a341a6549e429bf558fb63 Mon Sep 17 00:00:00 2001 From: sea212 <harald.b.heckmann@student.hs-rm.de> Date: Wed, 5 Sep 2018 15:42:11 +0200 Subject: [PATCH] Syntax error fixed: Accessed list with round brackets before --- pybitcoin/merkle.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pybitcoin/merkle.py b/pybitcoin/merkle.py index c558f38..22aae0b 100644 --- a/pybitcoin/merkle.py +++ b/pybitcoin/merkle.py @@ -60,7 +60,7 @@ def get(self, row_index, column_index): # check to make sure there are enough rows if row_index + 1 > len(self.rows): raise ValueError("There aren't that many rows.") - row = self.rows(row_index) + row = self.rows[row_index] # check to make sure there are enough items in the row if column_index + 1 > len(row): raise ValueError("There aren't that many items in that row.")