Skip to content
Snippets Groups Projects
Commit d526dd67 authored by Vermaat's avatar Vermaat
Browse files

Fix typo in model representation

parent 8fda3e51
No related branches found
No related tags found
No related merge requests found
...@@ -102,8 +102,8 @@ class BatchJob(db.Base): ...@@ -102,8 +102,8 @@ class BatchJob(db.Base):
self.added = datetime.now() self.added = datetime.now()
def __repr__(self): def __repr__(self):
return '<BatchJob %r filename=%r email=%r>' \ return '<BatchJob %r result_id=%r email=%r>' \
% (self.job_type, self.filename, self.email) % (self.job_type, self.result_id, self.email)
class BatchQueueItem(db.Base): class BatchQueueItem(db.Base):
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment