Skip to content

Commit

Permalink
Fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
kostis committed Mar 16, 2017
1 parent d08982d commit 9467bc9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion priv/cuter_smt.py
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@ def decode(self, data, shared = None):
shared = cc.get_shared(data)
return ["list", build_tlist([self.decode(item, shared) for item in items])]
elif cc.is_tuple(data):
items = cc.get_list_subterms(data)
items = cc.get_tuple_subterms(data)
shared = cc.get_shared(data)
return ["tuple", build_tlist([self.decode(item, shared) for item in items])]
elif cc.is_bitstring(data):
Expand Down

0 comments on commit 9467bc9

Please sign in to comment.