Skip to content

Commit b345312

Browse files
authored
Corrected find_id method in config class (#188)
1 parent fcc7c7d commit b345312

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pyslurm/pyslurm.pyx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -408,7 +408,7 @@ cdef class config:
408408
:returns: Dictionary of values for given config key
409409
:rtype: `dict`
410410
"""
411-
return self.__JobDict.get(keyID, {})
411+
return self.__ConfigDict.get(keyID, {})
412412

413413
cdef void __free(self):
414414
u"""Free memory allocated by slurm_load_ctl_conf."""

0 commit comments

Comments
 (0)