diff options
author | Martin Czygan <martin.czygan@gmail.com> | 2021-06-10 02:59:10 +0200 |
---|---|---|
committer | Martin Czygan <martin.czygan@gmail.com> | 2021-06-10 02:59:10 +0200 |
commit | 69b3b6cdafd94394229a5ef41bce89c66f0167e8 (patch) | |
tree | 2209b102c978f961f54562af5e9feed48aa8caad | |
parent | ce93c58d870bc94ae4118daa1b24d1b1bfe1246f (diff) | |
download | refcat-69b3b6cdafd94394229a5ef41bce89c66f0167e8.tar.gz refcat-69b3b6cdafd94394229a5ef41bce89c66f0167e8.zip |
fix sort invocation
-rw-r--r-- | python/refcat/tasks.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/python/refcat/tasks.py b/python/refcat/tasks.py index a3bf458..3acfa43 100644 --- a/python/refcat/tasks.py +++ b/python/refcat/tasks.py @@ -1237,7 +1237,7 @@ class BrefSortedByWorkID(Refcat): shellout(""" zstdcat -T0 {bref} | skate-map -m ff -x source_work_ident | - sort -S 25 % -k1,1 > zstd -c -T0 > {output} + sort -S25% -k1,1 > zstd -c -T0 > {output} """, bref=self.input().path) luigi.LocalTarget(tmpf).move(self.output().path) |