Style fix in Job model.
authorLennard de Rijk <ljvderijk@gmail.com>
Sat, 18 Apr 2009 21:26:13 +0000
changeset 2225 c6a0f935504c
parent 2224 fc719e902a70
child 2226 6159450c4767
Style fix in Job model. Patch by: Lennard de Rijk Reviewed by: to-be-reviewed
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)