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: |