浏览代码

fix python 3.4 jsonerror import

Guénaël Muller 7 年前
父节点
当前提交
186be208cd
共有 1 个文件被更改,包括 4 次插入2 次删除
  1. 4 2
      tracim/lib/utils/auth.py

+ 4 - 2
tracim/lib/utils/auth.py 查看文件

@@ -1,7 +1,9 @@
1 1
 # -*- coding: utf-8 -*-
2 2
 import typing
3
-
4
-from json.decoder import JSONDecodeError
3
+try:
4
+    from json.decoder import JSONDecodeError
5
+except ImportError:  # python3.4
6
+    JSONDecodeError = ValueError
5 7
 from sqlalchemy.orm.exc import NoResultFound
6 8
 
7 9
 from pyramid.request import Request