Mercurial > hg > autobot
changeset 106:a53587f82e6f
forgot the self.
author | Jeff Hammel <jhammel@mozilla.com> |
---|---|
date | Sat, 22 Jan 2011 17:17:57 -0800 |
parents | cbc4130a179d |
children | 2de1c1410b77 |
files | autobot/changes/poller.py |
diffstat | 1 files changed, 1 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/autobot/changes/poller.py Sat Jan 22 17:16:42 2011 -0800 +++ b/autobot/changes/poller.py Sat Jan 22 17:17:57 2011 -0800 @@ -307,7 +307,7 @@ return a deferred something-or-other that has the changes to be processed. XXX the format is pretty particular """ - range = '%s:%s' % (preHash, postHash) + range = '%s:%s' % (self.preHash, self.postHash) d = utils.getProcessOutput(self.binary, ['log', '-r', range, '--template', '{node}\\n'], path=self.workdir, env=dict(PATH=os.environ['PATH']), errortoo=False )