Skip to content

Commit

Permalink
minor cosmetic pep8 changes
Browse files Browse the repository at this point in the history
  • Loading branch information
Mark Fiers committed Nov 14, 2012
1 parent 35ac2ac commit dc6f395
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions moa/backend/ruff/simple.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,16 +11,16 @@

from moa.backend.ruff.base import RuffBaseJob

class RuffSimpleJob(RuffBaseJob):


class RuffSimpleJob(RuffBaseJob):

def execute(self):
l.debug("Executing simple with runid %s" % self.jobData['runid'])
runner = moa.actor.getRunner()
rc = runner(
sysConf.job.wd,
[self.scriptFile],
self.jobData,
sysConf.job.wd,
[self.scriptFile],
self.jobData,
command=self.command
)
)
return rc

0 comments on commit dc6f395

Please sign in to comment.