about summary refs log tree commit diff
path: root/solve.py
diff options
context:
space:
mode:
Diffstat (limited to 'solve.py')
-rw-r--r--solve.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/solve.py b/solve.py
index 82cf1f0..ed81c28 100644
--- a/solve.py
+++ b/solve.py
@@ -663,8 +663,8 @@ while True:
         with open('cache.pickle', 'wb') as handle:
             pickle.dump(cache, handle, protocol=pickle.HIGHEST_PROTOCOL)
 
-        for k, v in cache:
-            print(k, v)
+        for k in cache:
+            print(k, cache[k])
 
 
         break