Skip to content
Snippets Groups Projects
Commit 271537e2 authored by René Heß's avatar René Heß
Browse files

Make test_cache python 3 compatible

parent 8b9121bd
No related branches found
No related tags found
No related merge requests found
...@@ -11,7 +11,7 @@ from dune.perftool.generation.cache import(delete_cache_items, ...@@ -11,7 +11,7 @@ from dune.perftool.generation.cache import(delete_cache_items,
def print_cache(): def print_cache():
"""Print all cache items""" """Print all cache items"""
for i in retrieve_cache_items("True"): for i in retrieve_cache_items("True"):
print i print(i)
# ================================================ # ================================================
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment