Skip to content

Commit

Permalink
Update sge.py
Browse files Browse the repository at this point in the history
  • Loading branch information
QuantumChemist authored and gpetretto committed Nov 15, 2024
1 parent 76f8e49 commit 62b683f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/qtoolkit/io/sge.py
Original file line number Diff line number Diff line change
Expand Up @@ -322,7 +322,7 @@ def parse_jobs_list_output(self, exit_code, stdout, stderr) -> list[QJob]:
info.memory_per_cpu = self._convert_memory_str(
self._get_element_text(job_element, "hard resource_list.mem_free")
)
info.partition = self._get_element_text(job_element, "queue_name")
info.partition = self._get_element_text(job_element, "queue")
info.time_limit = self._convert_str_to_time(
self._get_element_text(job_element, "hard resource_list.h_rt")
)
Expand Down

0 comments on commit 62b683f

Please sign in to comment.