Chromium Code Reviews| Index: third_party/WebKit/Tools/Scripts/webkitpy/tool/bot/commit_announcer.py |
| diff --git a/third_party/WebKit/Tools/Scripts/webkitpy/tool/bot/commit_announcer.py b/third_party/WebKit/Tools/Scripts/webkitpy/tool/bot/commit_announcer.py |
| index 11d3982c37e6f416413a95a6f091c689f5456702..70db2d4502a414fc0c3f448f6ef1c80d3ef7867f 100644 |
| --- a/third_party/WebKit/Tools/Scripts/webkitpy/tool/bot/commit_announcer.py |
| +++ b/third_party/WebKit/Tools/Scripts/webkitpy/tool/bot/commit_announcer.py |
| @@ -50,7 +50,7 @@ class CommitAnnouncer(SingleServerIRCBot): |
| def __init__(self, tool, announce_path, irc_password): |
| SingleServerIRCBot.__init__(self, [(SERVER, PORT, irc_password)], NICKNAME, NICKNAME) |
| self.announce_path = announce_path |
| - self.git = Git(cwd=tool.scm().checkout_root, filesystem=tool.filesystem, executive=tool.executive) |
| + self.git = tool.scm(tool.scm().checkout_root) |
|
jeffcarp
2017/01/31 22:24:56
Was wondering why this was named tool, not host, a
qyearsley
2017/02/01 00:58:47
That's right, it is weird :-/ It would probably ma
|
| self.commands = { |
| 'help': self.help, |
| 'ping': self.ping, |