lpcmanager

91eb830a97a3
Parents b74feb4e9852
Children 6c155350684d
Fix for variables string typing mistake.
--- a/LPCManager.py Tue Sep 12 13:34:45 2017 +0200
+++ b/LPCManager.py Tue Sep 12 13:55:29 2017 +0200
@@ -241,7 +241,7 @@
if hasattr(self, "VariableName"):
self.tmpName = self.VariableName
self.position = self.tmpName.find(": ")
- if self.position != 0:
+ if self.position != -1:
self.position += 2
self.tmpName = self.tmpName[self.position:]
self.tmpName = self.tmpName.replace(" ", "")