From 54df94aa5f4c4ae3f78da20380e824231813e8f6 Mon Sep 17 00:00:00 2001 From: Mike Boers Date: Tue, 12 Apr 2016 15:10:43 -0400 Subject: [PATCH] Fix variable name (#1 on GitHub) --- sgschema/schema.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sgschema/schema.py b/sgschema/schema.py index 6281528..1b156b5 100644 --- a/sgschema/schema.py +++ b/sgschema/schema.py @@ -193,7 +193,7 @@ def load_entry_points(self, base_url, group='sgschema_loaders', verbose=False): return else: if data: - schema.load(data) + self.load(data) def load(self, input_, recurse=True): """Load a JSON file or ``dict`` containing schema structures.