summaryrefslogtreecommitdiff
path: root/jsonschema/_utils.py
diff options
context:
space:
mode:
authorAnthony Sottile <asottile@umich.edu>2014-10-16 14:04:58 -0700
committerAnthony Sottile <asottile@umich.edu>2014-10-16 14:04:58 -0700
commitacbcbb1a160c792db939811803d9d86038589837 (patch)
tree6684063afbdd5cd24607c5a881aa5308f4543ca6 /jsonschema/_utils.py
parenteb987ac9ee6c081be4c6607ef7f87e928fb1bb50 (diff)
downloadjsonschema-acbcbb1a160c792db939811803d9d86038589837.tar.gz
Support pypy3
Diffstat (limited to 'jsonschema/_utils.py')
-rw-r--r--jsonschema/_utils.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/jsonschema/_utils.py b/jsonschema/_utils.py
index 2262f33..ae7e2b5 100644
--- a/jsonschema/_utils.py
+++ b/jsonschema/_utils.py
@@ -54,7 +54,7 @@ def load_schema(name):
"""
- data = pkgutil.get_data(__package__, "schemas/{0}.json".format(name))
+ data = pkgutil.get_data('jsonschema', "schemas/{0}.json".format(name))
return json.loads(data.decode("utf-8"))