!fixup simplify zipListsWith call

master
sternenseemann 2021-03-22 14:52:13 +01:00
parent 66454f0e5a
commit 726db56d68
1 changed files with 1 additions and 1 deletions

View File

@ -88,6 +88,6 @@ import ./make-test-python.nix ({ pkgs, lib, ... }: {
# to the next one.
'' + lib.concatStrings
(reduce
(a: b: lib.zipListsWith (cs: c: cs + "\n" + c) a b)
(lib.zipListsWith (cs: c: cs + c))
(builtins.map clientScript clients));
})