feedwarrior

Slim, portable tooling for creating and distributing decentralized append logs
git clone git://git.defalsify.org/logwarrior.git
Log | Files | Refs | README | LICENSE

commit 2f81fba0ef78b52a3d2c4c959ef2f21d17502917
parent 987e94a270131117bcec016d6b59ec6cac42d912
Author: nolash <dev@holbrook.no>
Date:   Sat,  4 Jul 2020 00:25:59 +0200

Add correct key for compress input on file put

Diffstat:
Mfeedwarrior/cmd/entry.py | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/feedwarrior/cmd/entry.py b/feedwarrior/cmd/entry.py @@ -37,6 +37,6 @@ def execute(config, feed, args): logg.debug('adding entry {}'.format(uu)) fa = fileadapter(config.data_dir, feed.uuid) - fa.put(entry.uuid, entry, args.z) + fa.put(entry.uuid, entry, compress=args.z) feed.add(entry)