Author: eelco
Date: Mon Dec  5 21:04:20 2011
New Revision: 30768
URL: https://nixos.org/websvn/nix/?rev=30768&sc=1

Log:
* Remove unnecessary quotes.  showPaths() already adds quotes.

Modified:
   nix/trunk/src/libstore/local-store.cc

Modified: nix/trunk/src/libstore/local-store.cc
==============================================================================
--- nix/trunk/src/libstore/local-store.cc       Mon Dec  5 19:58:19 2011        
(r30767)
+++ nix/trunk/src/libstore/local-store.cc       Mon Dec  5 21:04:20 2011        
(r30768)
@@ -1347,7 +1347,7 @@
                 PathSet referrers; queryReferrers(path, referrers);
                 referrers.erase(path); /* ignore self-references */
                 if (!referrers.empty())
-                    throw PathInUse(format("cannot delete path `%1%' because 
it is in use by `%2%'")
+                    throw PathInUse(format("cannot delete path `%1%' because 
it is in use by %2%")
                         % path % showPaths(referrers));
                 invalidatePath(path);
             }
_______________________________________________
nix-commits mailing list
nix-comm...@lists.science.uu.nl
http://lists.science.uu.nl/mailman/listinfo/nix-commits

Reply via email to