Skip to content

Commit

Permalink
include basedir in path join
Browse files Browse the repository at this point in the history
  • Loading branch information
djmitche committed Apr 12, 2012
1 parent 6bb841f commit 088c102
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion master/buildbot/scripts/reconfig.py
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ def run(self, basedir, quiet):
self.sent_signal = False
reactor.callLater(0.2, self.sighup)

lw = LogWatcher(os.path.join("twistd.log"))
lw = LogWatcher(os.path.join(basedir, "twistd.log"))
d = lw.start()
d.addCallbacks(self.success, self.failure)
d.addBoth(lambda _ : self.rc)
Expand Down

0 comments on commit 088c102

Please sign in to comment.