From 18f98ec5a2d5d2a1ff7f2edd869785afce6159ee Mon Sep 17 00:00:00 2001 From: Eelco Dolstra Date: Tue, 5 Jul 2011 13:55:41 +0000 Subject: [PATCH] * Disable the trace message "not an attrSet" because it shows up in nix-env output. svn path=/nixpkgs/trunk/; revision=27610 --- pkgs/lib/misc.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/lib/misc.nix b/pkgs/lib/misc.nix index 7f04e7e1e581..df3956f1147a 100644 --- a/pkgs/lib/misc.nix +++ b/pkgs/lib/misc.nix @@ -216,7 +216,7 @@ rec { innerClosePropagation = ready: list: if list == [] then ready else if ! isAttrs (head list) then - builtins.trace ("not an attrSet: ${lib.showVal (head list)}") + /* builtins.trace ("not an attrSet: ${lib.showVal (head list)}") */ innerClosePropagation ready (tail list) else innerClosePropagation