From 271ce3ba3d6bcb95367671877f5505bd1eb62df2 Mon Sep 17 00:00:00 2001 From: Jude Nelson Date: Sun, 10 Jul 2016 16:29:30 -0400 Subject: [PATCH] zonefile_dict --- blockstack/lib/storage/crawl.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/blockstack/lib/storage/crawl.py b/blockstack/lib/storage/crawl.py index 0dfd467a9..627039049 100644 --- a/blockstack/lib/storage/crawl.py +++ b/blockstack/lib/storage/crawl.py @@ -66,7 +66,7 @@ def get_cached_zonefile( zonefile_hash, zonefile_dir=None ): try: zonefile_dict = blockstack_zones.parse_zone_file( data ) - assert blockstack_client.is_user_zonefile( user_zonefile ), "Not a user zonefile: %s" % zonefile_hash + assert blockstack_client.is_user_zonefile( zonefile_dict ), "Not a user zonefile: %s" % zonefile_hash return zonefile_dict except Exception, e: log.error("Failed to parse zonefile")