fix: Remove single quote for filter

This commit is contained in:
Dheepak Krishnamurthy 2021-12-06 15:36:44 -07:00
parent 375fa19a90
commit 8f1f9f85b7
2 changed files with 2 additions and 2 deletions

View file

@ -1,4 +1,4 @@
.\" Automatically generated by Pandoc 2.14.2
.\" Automatically generated by Pandoc 2.16.1
.\"
.TH "taskwarrior-tui" "1" "" "" ""
.hy

View file

@ -1572,7 +1572,7 @@ impl TaskwarriorTui {
task.arg("rc.confirmation=off");
task.arg(&format!(
r#""rc.report.{}.filter='{}'""#,
r#""rc.report.{}.filter={}""#,
self.report,
self.filter.as_str().trim()
));