src/eric7/Plugins/VcsPlugins/vcsPySvn/subversion.py

branch
eric7
changeset 10373
093dcebe5ecb
parent 10069
435cc5875135
child 10403
ea3320d5e8e9
equal deleted inserted replaced
10372:1444b4bee64b 10373:093dcebe5ecb
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

eric ide

mercurial