Skip to content

Commit ef7175c

Browse files
committed
Fix misplaced parenthesis
1 parent f7f9de7 commit ef7175c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/pavilion/schedulers/advanced.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -116,7 +116,7 @@ def _get_initial_vars(self, sched_config: dict) -> SchedulerVariables:
116116
"Requested {} 'schedule.include_nodes' to include in every chunk, but "
117117
"set a 'chunking.size' of {}. "
118118
"The chunk size must be more than the number of include_nodes."
119-
.format(len(include_nodes, chunk_size)))
119+
.format(len(include_nodes), chunk_size))
120120

121121
# Min nodes is always >= 1, but max_nodes may be None
122122
min_nodes, max_nodes = calc_node_range(sched_config, len(filtered_nodes))

0 commit comments

Comments
 (0)