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

branch
eric7
changeset 10373
093dcebe5ecb
parent 10069
435cc5875135
child 10403
ea3320d5e8e9
equal deleted inserted replaced
10372:1444b4bee64b 10373:093dcebe5ecb
1455 if not os.path.isdir(os.path.join(dname, self.adminDir)): 1455 if not os.path.isdir(os.path.join(dname, self.adminDir)):
1456 # not under version control -> do nothing 1456 # not under version control -> do nothing
1457 return names 1457 return names
1458 1458
1459 found = False 1459 found = False
1460 for name in list(self.statusCache.keys()): 1460 for name in self.statusCache:
1461 if os.path.dirname(name) == dname: 1461 if os.path.dirname(name) == dname:
1462 if shortcut: 1462 if shortcut:
1463 found = True 1463 found = True
1464 break 1464 break
1465 if name in names: 1465 if name in names:

eric ide

mercurial