aboutsummaryrefslogtreecommitdiff
path: root/src/bin
diff options
context:
space:
mode:
authornotgne22021-02-19 16:32:44 -0700
committerGitHub2021-02-19 16:32:44 -0700
commitc599d36da6c9a59d1ac2e39d6b7eeb6ab2925769 (patch)
treecf5f8d9f59b11dbc03eb683999e1a60f008d4795 /src/bin
parentda25b206743aab65937ced8bfdc2401cf2e614da (diff)
parent15864f982600cbf21a2bf32e7a9300b9a9f48b32 (diff)
Merge pull request #67 from serokell/notgne2/remove-redundant-format
Remove redundant `format!()`
Diffstat (limited to '')
-rw-r--r--src/bin/deploy.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/bin/deploy.rs b/src/bin/deploy.rs
index 756c97c..9c41d25 100644
--- a/src/bin/deploy.rs
+++ b/src/bin/deploy.rs
@@ -208,7 +208,7 @@ async fn get_deployment_data(
}
(None, None) => {
// We need to evaluate all profiles of all nodes anyway, so just do it strictly
- c.arg(format!("deploy: deploy"))
+ c.arg("deploy: deploy")
}
(None, Some(_)) => return Err(GetDeploymentDataError::ProfileNoNode),
}