Skip to content

Commit

Permalink
Use the appropriate main
Browse files Browse the repository at this point in the history
  • Loading branch information
arjoly committed Sep 28, 2015
1 parent 3f59175 commit 9854cf2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions examples/simple-launcher/clusterlib_launcher.py
Expand Up @@ -12,8 +12,8 @@

for param in range(100):
job_name = "job-param=%s" % param
job_command = "%s clusterlib.py --param %s" % (sys.executable,
param)
job_command = "%s clusterlib_main.py --param %s" % (sys.executable,
param)

if job_name not in scheduled_jobs and job_command not in done_jobs:
script = submit(job_command, job_name=job_name)
Expand Down

0 comments on commit 9854cf2

Please sign in to comment.