app/soc/cron/job.py
changeset 2366 1a954e80d444
parent 2345 f78caf12f32d
--- a/app/soc/cron/job.py	Wed May 27 03:31:58 2009 +0200
+++ b/app/soc/cron/job.py	Wed May 27 20:37:04 2009 +0200
@@ -57,7 +57,7 @@
   def __init__(self):
     """Constructs a new Handler with all known jobs set.
     """
-
+    # pylint: disable-msg=C0103
     self.OUT_OF_TIME = 0
     self.ALREADY_CLAIMED = 1
     self.SUCCESS = 2
@@ -87,6 +87,7 @@
 
     job.status = 'started'
 
+    # pylint: disable-msg=E1103
     if job.put():
       return job
     else: