1578 with contextlib.suppress(pysvn.ClientError): |
1578 with contextlib.suppress(pysvn.ClientError): |
1579 with EricMutexLocker(self.vcsExecutionMutex): |
1579 with EricMutexLocker(self.vcsExecutionMutex): |
1580 allFiles = client.status( |
1580 allFiles = client.status( |
1581 dname, recurse=True, get_all=True, ignore=True, update=False |
1581 dname, recurse=True, get_all=True, ignore=True, update=False |
1582 ) |
1582 ) |
1583 dirs = [x for x in names.keys() if os.path.isdir(x)] |
1583 dirs = [x for x in names if os.path.isdir(x)] |
1584 for file in allFiles: |
1584 for file in allFiles: |
1585 name = os.path.normcase(file.path) |
1585 name = os.path.normcase(file.path) |
1586 if self.__isVersioned(file): |
1586 if self.__isVersioned(file): |
1587 if name in names: |
1587 if name in names: |
1588 names[name] = self.canBeCommitted |
1588 names[name] = self.canBeCommitted |