Kaydet (Commit) cac5d9fd authored tarafından Ramiro Morales's avatar Ramiro Morales

Fixed #18022 -- Fixed import of standalone Python 'json' module.

Thanks Clueless for the report and initial patch.

Refs #17071, r17018.

git-svn-id: http://code.djangoproject.com/svn/django/trunk@17865 bcc190cf-cafb-0310-a4f2-bffc1f526a37
üst 7d5979f9
......@@ -129,7 +129,8 @@ if not use_system_version:
use_system_version = True
# Make sure we copy over the version. See #17071
__version__ = json.__version__
from json import __version__ as json_version
__version__ = json_version
except (ImportError, NameError):
pass
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment