Fix: Unresolved reference.
authorKaj Tuomi <kaj.tuomi@siru.fi>
Fri, 2 Sep 2016 08:12:30 +0000 (11:12 +0300)
committerKaj Tuomi <kaj.tuomi@siru.fi>
Fri, 2 Sep 2016 08:12:30 +0000 (11:12 +0300)
backends/smt2/smtio.py

index fc7d1e13d19b1a5b95fe4f0a0dff9fcbbd6bdcfa..e5c8b231c680c0362f5832939ef89c2888328657 100644 (file)
@@ -274,7 +274,7 @@ class smtio:
 
     def bv2hex(self, v):
         h = ""
-        v = bv2bin(v)
+        v = self.bv2bin(v)
         while len(v) > 0:
             d = 0
             if len(v) > 0 and v[-1] == "1": d += 1