aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMartin Czygan <martin.czygan@gmail.com>2021-04-28 23:38:08 +0200
committerMartin Czygan <martin.czygan@gmail.com>2021-04-28 23:38:08 +0200
commitc4528c9e004f22b77ae7983acc14b91e84356e7c (patch)
treeda65aeefbad9479698961715d1472ca94bfebeb3
parent274aa23d5de0a07c4973a354b3d4b19fd929a4eb (diff)
downloadrefcat-c4528c9e004f22b77ae7983acc14b91e84356e7c.tar.gz
refcat-c4528c9e004f22b77ae7983acc14b91e84356e7c.zip
add missing quote
-rw-r--r--python/refcat/tasks.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/python/refcat/tasks.py b/python/refcat/tasks.py
index 425819d..df2245f 100644
--- a/python/refcat/tasks.py
+++ b/python/refcat/tasks.py
@@ -1439,7 +1439,7 @@ class WithISBN(Refcat):
def run(self):
output = shellout("""
zstdcat -T0 {input} |
- parallel -j {n} --block 10M --pipe "jq -rc 'select(.ext_ids.isbn != null)" |
+ parallel -j {n} --block 10M --pipe "jq -rc 'select(.ext_ids.isbn != null)'" |
zstd -T0 -c > {output}
""",
n=self.n,