472 @type str |
472 @type str |
473 """ |
473 """ |
474 if uid in self.__projects: |
474 if uid in self.__projects: |
475 project = self.__projects[uid] |
475 project = self.__projects[uid] |
476 projectPath = os.path.dirname(project["file"]) |
476 projectPath = os.path.dirname(project["file"]) |
477 shutil.rmtree(projectPath, True) |
477 shutil.rmtree(projectPath, ignore_errors=True) |
478 |
478 |
479 self.removeProject(uid) |
479 self.removeProject(uid) |
480 |
480 |
481 def __newMultiProject(self): |
481 def __newMultiProject(self): |
482 """ |
482 """ |