From fdfd7398319bbf5cdb371955c70c0daf9b068440 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?St=C3=A9phane=20Cerveau?= Date: Mon, 17 Jan 2022 14:26:24 +0100 Subject: [PATCH] pipeline: fix a small issue with properties Line formatting was wrong with properties set ie filesrc location. --- src/pipeline.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/pipeline.rs b/src/pipeline.rs index cd4ef69..8a7268f 100644 --- a/src/pipeline.rs +++ b/src/pipeline.rs @@ -391,7 +391,7 @@ impl Pipeline { elements.insert(unique_name.clone(), unique_name.clone()); for (name, value) in node.properties().iter() { if !node.hidden_property(name) { - description.push_str(&format!("{}={}", name, value)); + description.push_str(&format!("{}={} ", name, value)); } }