--- a/LPCManager.py Thu Aug 24 12:55:26 2017 +0200
+++ b/LPCManager.py Wed Aug 30 10:36:13 2017 +0200
@@ -237,7 +237,10 @@
- return self.VariableName
+ if hasattr(self, "VariableName"): + return self.VariableName LocationCellControl.OnBrowseButtonClick = OnBrowseButtonClick
LocationCellControl.GetName = GetName
@@ -247,7 +250,8 @@
name = self.CellControl.GetName()
- self.Table.SetValueByName(row, 'Name', name)
+ self.Table.SetValueByName(row, 'Name', name) self.Table.SetValueByName(row, 'Location', loc)
self.Table.SetValueByName(row, 'Type', self.CellControl.GetVarType())
self.CellControl.Disable()