| Index: third_party/buildbot_8_4p1/buildbot/scripts/runner.py
|
| diff --git a/third_party/buildbot_8_4p1/buildbot/scripts/runner.py b/third_party/buildbot_8_4p1/buildbot/scripts/runner.py
|
| index 73b2e16d521d963cad42a47342aa2d3398cc56dd..aff6a14a970d721a1e458f2a82c3d4573a98a55b 100644
|
| --- a/third_party/buildbot_8_4p1/buildbot/scripts/runner.py
|
| +++ b/third_party/buildbot_8_4p1/buildbot/scripts/runner.py
|
| @@ -47,9 +47,9 @@ def in_reactor(f):
|
| return wrap
|
|
|
| def isBuildmasterDir(dir):
|
| - buildbot_tac = os.path.join(dir, "buildbot.tac")
|
| + buildbot_tac = os.path.join(dir, "master.cfg")
|
| if not os.path.isfile(buildbot_tac):
|
| - print "no buildbot.tac"
|
| + print "no master.cfg"
|
| return False
|
|
|
| contents = open(buildbot_tac, "r").read()
|
| @@ -315,8 +315,6 @@ class Maker:
|
| else:
|
| if not self.quiet:
|
| print "%s has old/modified contents" % target
|
| - print " writing new contents to %s.new" % target
|
| - open(target + ".new", "wt").write(new_contents)
|
| # otherwise, it's up to date
|
| else:
|
| if not self.quiet:
|
|
|