aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authornotgne22021-02-10 20:28:14 -0700
committernotgne22021-02-19 16:31:28 -0700
commit15864f982600cbf21a2bf32e7a9300b9a9f48b32 (patch)
treecf5f8d9f59b11dbc03eb683999e1a60f008d4795 /src
parentda25b206743aab65937ced8bfdc2401cf2e614da (diff)
Remove redundant `format!()`
Diffstat (limited to 'src')
-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),
}