Skip to content

Commit

Permalink
Fix missing variable in format string
Browse files Browse the repository at this point in the history
  • Loading branch information
pschafhalter committed Nov 25, 2020
1 parent a5a79c8 commit c96b181
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/node/node.rs
Original file line number Diff line number Diff line change
Expand Up @@ -291,7 +291,7 @@ impl Node {
let graph_ref = self
.dataflow_graph
.as_ref()
.unwrap_or_else(|| panic!("Node {}: dataflow graph must be set."));
.unwrap_or_else(|| panic!("Node {}: dataflow graph must be set.", self.id));
let graph = scheduler::schedule(graph_ref);
if let Some(filename) = &self.config.graph_filename {
graph.to_dot(filename.as_str()).map_err(|e| e.to_string())?;
Expand Down

0 comments on commit c96b181

Please sign in to comment.