[DRAFT] Catch only Exception, not BaseException

This commit is contained in:
Chris Hennes
2021-02-10 14:08:56 -06:00
committed by wwmayer
parent 8228d64ac4
commit fe7e45a7de
16 changed files with 26 additions and 26 deletions

View File

@@ -170,7 +170,7 @@ class ArchSpaceGuiTools(GuiTools):
editpoints = []
editpoints.append(obj.ViewObject.Proxy.getTextPosition(obj.ViewObject))
return editpoints
except:
except Exception:
pass
def update_object_from_edit_points(self, obj, node_idx, v, alt_edit_mode=0):