Author: eelco
Date: Tue Jul  5 13:55:41 2011
New Revision: 27610
URL: https://svn.nixos.org/websvn/nix/?rev=27610&sc=1

Log:
* Disable the trace message "not an attrSet" because it shows up in
  nix-env output.

Modified:
   nixpkgs/trunk/pkgs/lib/misc.nix

Modified: nixpkgs/trunk/pkgs/lib/misc.nix
==============================================================================
--- nixpkgs/trunk/pkgs/lib/misc.nix     Tue Jul  5 13:43:44 2011        (r27609)
+++ nixpkgs/trunk/pkgs/lib/misc.nix     Tue Jul  5 13:55:41 2011        (r27610)
@@ -216,7 +216,7 @@
 
   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 
_______________________________________________
nix-commits mailing list
[email protected]
http://mail.cs.uu.nl/mailman/listinfo/nix-commits

Reply via email to