summaryrefslogtreecommitdiff
path: root/core/runtime.rs
diff options
context:
space:
mode:
Diffstat (limited to 'core/runtime.rs')
-rw-r--r--core/runtime.rs3
1 files changed, 2 insertions, 1 deletions
diff --git a/core/runtime.rs b/core/runtime.rs
index 98c95b39f..4a2f59f48 100644
--- a/core/runtime.rs
+++ b/core/runtime.rs
@@ -1012,7 +1012,8 @@ Pending dynamic modules:\n".to_string();
let module_info = module_map
.get_info_by_id(&pending_evaluate.module_id)
.unwrap();
- msg.push_str(&format!("- {}", module_info.name.as_str()));
+ msg.push_str("- ");
+ msg.push_str(module_info.name.as_str());
}
return Poll::Ready(Err(generic_error(msg)));
} else {