diff -r 2076df8743b5 -r 28af541d776b ConfigTreeNode.py --- a/ConfigTreeNode.py Mon May 07 15:10:39 2018 +0200 +++ b/ConfigTreeNode.py Thu May 10 08:33:50 2018 +0200 @@ -499,7 +499,10 @@ # Call the OnCloseMethod CTNInstance.OnCTNClose() # Delete confnode dir - shutil.rmtree(CTNInstance.CTNPath()) + try: + shutil.rmtree(CTNInstance.CTNPath()) + except: + pass # Remove child of Children self.Children[CTNInstance.CTNType].remove(CTNInstance) if len(self.Children[CTNInstance.CTNType]) == 0: