Fixed crash in project countStatus when tree contains orphaned item

This commit is contained in:
Veronica K. B. Olsen
2019-11-18 19:51:31 +01:00
parent a5d692d1f8
commit a5df5a151e
3 changed files with 2 additions and 2 deletions
+2
View File
@@ -41,6 +41,8 @@ class NWStatus():
return True
def lookupEntry(self, theLabel):
if theLabel is None:
return None
theLabel = theLabel.strip()
if theLabel in self.theMap.keys():
return self.theMap[theLabel]