Skip to content

Commit 1ab653a

Browse files
committed
Quick patch release 0.2.1: take out the pattern debugging statement in dbus list
1 parent deb9d7e commit 1ab653a

File tree

2 files changed

+1
-2
lines changed

2 files changed

+1
-2
lines changed

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "nu_plugin_dbus"
3-
version = "0.2.0"
3+
version = "0.2.1"
44
edition = "2021"
55

66
description = "Nushell plugin for communicating with D-Bus"

src/client.rs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -337,7 +337,6 @@ impl DbusClient {
337337
.map(|names: Vec<String>| {
338338
// Filter the names by the pattern
339339
if let Some(pattern) = pattern {
340-
eprintln!("pattern: {:?}", pattern);
341340
names.into_iter().filter(|name| pattern.is_match(name)).collect()
342341
} else {
343342
names

0 commit comments

Comments
 (0)