(self)
| 116 | MESSAGE = "Enable watchlist entry for merge notifications." |
| 117 | |
| 118 | def RunStep(self): |
| 119 | old_watchlist_content = FileToText(os.path.join(self.default_cwd, |
| 120 | WATCHLISTS_FILE)) |
| 121 | new_watchlist_content = re.sub("(# 'v8-merges@googlegroups\.com',)", |
| 122 | "'v8-merges@googlegroups.com',", |
| 123 | old_watchlist_content) |
| 124 | TextToFile(new_watchlist_content, os.path.join(self.default_cwd, |
| 125 | WATCHLISTS_FILE)) |
| 126 | |
| 127 | |
| 128 | class CommitBranch(Step): |
nothing calls this directly
no test coverage detected