summaryrefslogtreecommitdiff
path: root/core/runtime.rs
diff options
context:
space:
mode:
authorBartek IwaƄczuk <biwanczuk@gmail.com>2022-07-01 15:28:06 +0200
committerGitHub <noreply@github.com>2022-07-01 15:28:06 +0200
commitb8b82c3ea4ec154581f57b0d00f08f2fd1d871ce (patch)
treed94e3230479fe44dfe347d452423f98a5a1d8a47 /core/runtime.rs
parent77c25beaa59d64035c20ef59d93ed5a99677bc93 (diff)
chore: use Rust 1.62.0 (#15028)
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 {