Skip to content
Snippets Groups Projects
Commit cd37ef0a authored by Bryan Tong Minh's avatar Bryan Tong Minh
Browse files

simplejson conflict fix

parent 09b68e9b
No related branches found
No related tags found
No related merge requests found
...@@ -10,6 +10,8 @@ Mwclient 0.6.4 is unreleased. ...@@ -10,6 +10,8 @@ Mwclient 0.6.4 is unreleased.
* Added support for builtin json library * Added support for builtin json library
* Handle badtoken once * Handle badtoken once
* Bug 2690034: Fix revision iteration * Bug 2690034: Fix revision iteration
* Fix module conflict with simplejson-1.x by inserting mwclient path at the
beginning of sys.path instead of the end
== Changes in version 0.6.3 == == Changes in version 0.6.3 ==
* Added domain parameter to login. * Added domain parameter to login.
......
...@@ -26,7 +26,7 @@ ...@@ -26,7 +26,7 @@
import sys as _sys import sys as _sys
import os as _os import os as _os
_path = _os.path.dirname(__file__) _path = _os.path.dirname(__file__)
_sys.path.append(_os.path.abspath(_path)) _sys.path.insert(0, _os.path.abspath(_path))
from errors import * from errors import *
from client import Site, __ver__ from client import Site, __ver__
......
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