# HG changeset patch
# User Lennard de Rijk <ljvderijk@gmail.com>
# Date 1240089973 0
# Node ID c6a0f935504c93deb458c74814fe55119377f449
# Parent  fc719e902a70193bf9e60c7444834f31b36e7827
Style fix in Job model.

Patch by: Lennard de Rijk
Reviewed by: to-be-reviewed

diff -r fc719e902a70 -r c6a0f935504c app/soc/models/job.py
--- a/app/soc/models/job.py	Sat Apr 18 21:22:43 2009 +0000
+++ b/app/soc/models/job.py	Sat Apr 18 21:26:13 2009 +0000
@@ -46,7 +46,7 @@
   #: Finished means that this job has been completed.
   #: Aborted means that this job has been aborted due to a fatal error.
   status = db.StringProperty(default='waiting',
-      choices=['waiting','started','finished', 'aborted'])
+      choices=['waiting', 'started', 'finished', 'aborted'])
 
   #: the date this job was last modified on
   last_modified_on = db.DateTimeProperty(auto_now_add=True)