svn path=/nixpkgs/trunk/; revision=17182
This commit is contained in:
Eelco Dolstra 2009-09-16 11:37:07 +00:00
parent 5d6ee123ed
commit d7d80e8fdc

View file

@ -159,10 +159,10 @@ rec {
); );
errorSource = modules: errorSource = modules:
"The error may comes from the following files:\n" + ( "The error may come from the following files:\n" + (
lib.concatStringsSep "\n" ( lib.concatStringsSep "\n" (
map (m: map (m:
if m ? key then toString m.key else "<unknow location>" if m ? key then toString m.key else "<unknown location>"
) modules ) modules
) )
); );