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 :( --- src/command/client/history.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/command/client/history.rs') diff --git a/src/command/client/history.rs b/src/command/client/history.rs index 5c3f1726..19a3df0e 100644 --- a/src/command/client/history.rs +++ b/src/command/client/history.rs @@ -202,11 +202,11 @@ impl Cmd { let history = match (session, cwd) { (None, None) => db.list(settings.filter_mode, &context, None, false).await?, (None, Some(cwd)) => { - let query = format!("select * from history where cwd = '{}';", cwd); + let query = format!("select * from history where cwd = '{cwd}';"); db.query_history(&query).await? } (Some(session), None) => { - let query = format!("select * from history where session = '{}';", session); + let query = format!("select * from history where session = '{session}';"); db.query_history(&query).await? } (Some(session), Some(cwd)) => { -- cgit v1.3.1