From 4c6a287f4d18161ed263bb37905edb2566f81245 Mon Sep 17 00:00:00 2001 From: Ellie Huxtable Date: Fri, 16 Dec 2022 18:37:45 +0000 Subject: Switch to using ATUIN_LOG instead of RUST_LOG (#642) * Switch to using ATUIN_LOG instead of RUST_LOG * Stop clippy complaining * I should know better - clippy is never happy :( --- atuin-client/src/database.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'atuin-client/src') diff --git a/atuin-client/src/database.rs b/atuin-client/src/database.rs index b0d05dba..e1b58e03 100644 --- a/atuin-client/src/database.rs +++ b/atuin-client/src/database.rs @@ -738,7 +738,7 @@ impl SqlBuilderExt for SqlBuilder { } else { cond.push_str(" LIKE '"); } - cond.push_str(&esc(&mask.to_string())); + cond.push_str(&esc(mask.to_string())); cond.push('\''); if is_or { self.or_where(cond) -- cgit v1.3.1