bugfix
This commit is contained in:
parent
6c3677af06
commit
3f90c68483
@ -1,7 +1,11 @@
|
|||||||
import os
|
import os
|
||||||
import sys
|
import sys
|
||||||
import codecs
|
import codecs
|
||||||
import ujson as json
|
# import ujson as json
|
||||||
|
try:
|
||||||
|
import ujson as json
|
||||||
|
except:
|
||||||
|
import json
|
||||||
from traceback import print_exc
|
from traceback import print_exc
|
||||||
|
|
||||||
from functools import partial
|
from functools import partial
|
||||||
|
@ -1,5 +1,8 @@
|
|||||||
import time
|
import time
|
||||||
import ujson as json
|
try:
|
||||||
|
import ujson as json
|
||||||
|
except:
|
||||||
|
import json
|
||||||
from functools import partial
|
from functools import partial
|
||||||
|
|
||||||
from kivy.logger import Logger
|
from kivy.logger import Logger
|
||||||
|
@ -1 +1 @@
|
|||||||
__version__ = '0.2.6'
|
__version__ = '0.2.7'
|
||||||
|
Loading…
Reference in New Issue
Block a user