File tree Expand file tree Collapse file tree 2 files changed +3
-1
lines changed Expand file tree Collapse file tree 2 files changed +3
-1
lines changed Original file line number Diff line number Diff line change @@ -10,6 +10,7 @@ project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
10
10
### Fixed
11
11
12
12
- Fix potentially empty expanded value for duplicate key (#260 by [ @bbc ] ).
13
+ - Fix import error on Python 3.5.0 and 3.5.1 (#267 by [ @gongqingkui ] ).
13
14
14
15
## [ 0.14.0] - 2020-07-03
15
16
@@ -206,6 +207,7 @@ project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
206
207
[ @ekohl ] : https://github.com/ekohl
207
208
[ @elbehery95 ] : https://github.com/elbehery95
208
209
[ @gergelyk ] : https://github.com/gergelyk
210
+ [ @gongqingkui ] : https://github.com/gongqingkui
209
211
[ @greyli ] : https://github.com/greyli
210
212
[ @qnighy ] : https://github.com/qnighy
211
213
[ @snobu ] : https://github.com/snobu
Original file line number Diff line number Diff line change @@ -55,7 +55,7 @@ def make_regex(string, extra_flags=0):
55
55
("error" , bool ),
56
56
],
57
57
)
58
- except ImportError :
58
+ except ( ImportError , AttributeError ) :
59
59
from collections import namedtuple
60
60
Original = namedtuple ( # type: ignore
61
61
"Original" ,
You can’t perform that action at this time.
0 commit comments