Merge pull request #132 from brightpuddle/master

This commit is contained in:
Dheepak Krishnamurthy 2021-03-12 09:24:23 -07:00 committed by GitHub
commit d87e9fd4a4
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View file

@ -30,7 +30,7 @@ jobs:
profile: minimal
toolchain: stable
override: true
- run: sudo apt-get update && sudo apt-get install -y taskwarrior taskd
- run: sudo apt-get update && sudo apt-get install -y taskwarrior
- uses: actions/checkout@v2
with:
repository: kdheepak/taskwarrior-testdata

View file

@ -975,7 +975,7 @@ impl TTApp {
task.arg("export");
let filter = if !self.current_context_filter.is_empty() {
let t = format!("{} {}", self.filter.as_str(), self.current_context_filter);
let t = format!("{} '\\({}\\)'", self.filter.as_str(), self.current_context_filter);
t
} else {
self.filter.as_str().into()