Browse Source

适配postgresql

jxing 5 năm trước cách đây
mục cha
commit
cec1d33662
1 tập tin đã thay đổi với 1 bổ sung1 xóa
  1. 1 1
      src/grid/check_grid.py

+ 1 - 1
src/grid/check_grid.py

@@ -64,7 +64,7 @@ def has_conflict(base, compare):
             type1 = location.get('Type')
             location2 = compare.get(name)
             if isinstance(location2, str):
-                location2 = dict(location2)
+                location2 = json.loads(location2)
             type2 = location2.get('Type')
             if type1 in type2:
                 if 'Line' in type1: