diff options
| author | Ellie Huxtable <ellie@elliehuxtable.com> | 2022-12-16 18:37:45 +0000 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2022-12-16 18:37:45 +0000 |
| commit | 4c6a287f4d18161ed263bb37905edb2566f81245 (patch) | |
| tree | 741c34c6fd700788b4d7b29a1b44a95d77cd9819 /atuin-client/src/database.rs | |
| parent | Fix session history (#620) (diff) | |
| download | atuin-4c6a287f4d18161ed263bb37905edb2566f81245.zip | |
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 :(
Diffstat (limited to 'atuin-client/src/database.rs')
| -rw-r--r-- | atuin-client/src/database.rs | 2 |
1 files changed, 1 insertions, 1 deletions
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) |
