(self, d)
| 3711 | self.knownBranches[branch] = branch |
| 3712 | |
| 3713 | def updateOptionDict(self, d): |
| 3714 | option_keys = {} |
| 3715 | if self.keepRepoPath: |
| 3716 | option_keys['keepRepoPath'] = 1 |
| 3717 | |
| 3718 | d["options"] = ' '.join(sorted(option_keys.keys())) |
| 3719 | |
| 3720 | def readOptions(self, d): |
| 3721 | self.keepRepoPath = ('options' in d |
no outgoing calls
no test coverage detected