fix usage text
[paralleljobs.git] / paralleljobs.py
index baf79651b101056abf7eb20513c73303e8cbf695..cb4a0691da479eed4ef87da1255951a22e17f484 100755 (executable)
@@ -66,12 +66,13 @@ def runCmd(cmd):
     return exitcode, out, err
 
 def processJob(conn, jobid):
-    print("Process job %d" % (jobid))
 
     c = conn.cursor()
     c.execute("SELECT cmd FROM jobs WHERE id=?", (jobid,))
     cmd, = c.fetchone()
 
+    print("Process job %d: %s" % (jobid, cmd))
+
     ec, out, err = runCmd(cmd)
     c.execute("UPDATE jobs SET exitcode=?, done=1 WHERE id=?;", (ec, jobid))
 
@@ -168,7 +169,7 @@ OPTIONS:
   -d database     the database to process
   -n num          in -w mode, only perform num-many jobs
   -p cols-def     create properties table with SQL column spec
-  -v              print output of the job's command
+  -v              verbose output
 
 Commands may be combined in one call of {0}.