diff --git a/Cargo.toml b/Cargo.toml index e756a31..7dee0b0 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "nu_plugin_dbus" -version = "0.2.0" +version = "0.2.1" edition = "2021" description = "Nushell plugin for communicating with D-Bus" diff --git a/src/client.rs b/src/client.rs index 2b0ba4c..4f9140f 100644 --- a/src/client.rs +++ b/src/client.rs @@ -337,7 +337,6 @@ impl DbusClient { .map(|names: Vec| { // Filter the names by the pattern if let Some(pattern) = pattern { - eprintln!("pattern: {:?}", pattern); names.into_iter().filter(|name| pattern.is_match(name)).collect() } else { names