Skip to content

Commit

Permalink
fixed plugin handler call
Browse files Browse the repository at this point in the history
  • Loading branch information
Mark Fiers committed Aug 3, 2012
1 parent 1669cee commit 7036115
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/python/moa/job.py
Original file line number Diff line number Diff line change
Expand Up @@ -294,7 +294,7 @@ def execute(self, job, args, **kwargs):

l.debug("Starting RUN")
for subcommand in ['prepare', 'run', 'finish']:
self.pluginHandler.run("pre_%s" % subcommand)
self.pluginHandler.run("pre_%s" % subcommand, job = self)
l.debug("Starting RUN/%s" % subcommand)
try:
rc = self.backend.execute(self, subcommand, args)
Expand Down

0 comments on commit 7036115

Please sign in to comment.