Skip to content

Commit

Permalink
Fix whitespace.
Browse files Browse the repository at this point in the history
  • Loading branch information
nvie committed Apr 14, 2014
1 parent fdf4abc commit 057c465
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions rq/job.py
Original file line number Diff line number Diff line change
Expand Up @@ -449,12 +449,12 @@ def perform(self): # noqa
_job_stack.push(self.id)
try:
self.set_status(Status.STARTED)
self._result = self.func(*self.args, **self.kwargs)
self._result = self.func(*self.args, **self.kwargs)
self.set_status(Status.FINISHED)
self.ended_at = utcnow()
self.ended_at = utcnow()
finally:
assert self.id == _job_stack.pop()

return self._result

def get_ttl(self, default_ttl=None):
Expand Down

0 comments on commit 057c465

Please sign in to comment.