| 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 c1015eb134535c76f0707e24132ae624c5019c68..11d3982c37e6f416413a95a6f091c689f5456702 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 @@
|
| def __init__(self, tool, announce_path, irc_password):
|
| SingleServerIRCBot.__init__(self, [(SERVER, PORT, irc_password)], NICKNAME, NICKNAME)
|
| self.announce_path = announce_path
|
| - self.git = tool.scm(path=tool.scm().checkout_root)
|
| + self.git = Git(cwd=tool.scm().checkout_root, filesystem=tool.filesystem, executive=tool.executive)
|
| self.commands = {
|
| 'help': self.help,
|
| 'ping': self.ping,
|
|
|