Skip to content

Commit

Permalink
Better job name (#65)
Browse files Browse the repository at this point in the history
* job submission system

* debug

* debug

* debug

* README

* docstr

* better job name
  • Loading branch information
FaroutYLq authored Dec 10, 2023
1 parent 14f27fd commit 3be655c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion jobs/submit.py
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ def _submit_single(self, loop_index, loop_item):
"""
Submit a single job.
"""
jobname = JOB_TITLE + '_{:03}'.format(loop_index)
jobname = JOB_TITLE + '_{:03}'.format(loop_item)
# Modify here for the script to run
jobstring = "python job.py %s"%(loop_item)
print(jobstring)
Expand Down

0 comments on commit 3be655c

Please sign in to comment.