(self, path)
| 3390 | gitStream.write("\n") |
| 3391 | |
| 3392 | def inClientSpec(self, path): |
| 3393 | if not self.clientSpecDirs: |
| 3394 | return True |
| 3395 | inClientSpec = self.clientSpecDirs.map_in_client(path) |
| 3396 | if not inClientSpec and self.verbose: |
| 3397 | print('Ignoring file outside of client spec: {0}'.format(path)) |
| 3398 | return inClientSpec |
| 3399 | |
| 3400 | def hasBranchPrefix(self, path): |
| 3401 | if not self.branchPrefixes: |