We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
dbus list
1 parent deb9d7e commit 1ab653aCopy full SHA for 1ab653a
Cargo.toml
@@ -1,6 +1,6 @@
1
[package]
2
name = "nu_plugin_dbus"
3
-version = "0.2.0"
+version = "0.2.1"
4
edition = "2021"
5
6
description = "Nushell plugin for communicating with D-Bus"
src/client.rs
@@ -337,7 +337,6 @@ impl DbusClient {
337
.map(|names: Vec<String>| {
338
// Filter the names by the pattern
339
if let Some(pattern) = pattern {
340
- eprintln!("pattern: {:?}", pattern);
341
names.into_iter().filter(|name| pattern.is_match(name)).collect()
342
} else {
343
names
0 commit comments