diff options
author | Eelco Dolstra <e.dolstra@tudelft.nl> | 2011-12-05T21·04+0000 |
---|---|---|
committer | Eelco Dolstra <e.dolstra@tudelft.nl> | 2011-12-05T21·04+0000 |
commit | c8c0380744afd107611bba17127a182ecebd4e0b (patch) | |
tree | 516cf3aa527f8d490d5e20ddfdcda90a5a58f672 /src/libstore | |
parent | 000160f5b915ce784e740c139f81e0cbeda751c4 (diff) |
* Remove unnecessary quotes. showPaths() already adds quotes.
Diffstat (limited to 'src/libstore')
-rw-r--r-- | src/libstore/local-store.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libstore/local-store.cc b/src/libstore/local-store.cc index a353168ffb61..5107a93de299 100644 --- a/src/libstore/local-store.cc +++ b/src/libstore/local-store.cc @@ -1347,7 +1347,7 @@ void LocalStore::deleteFromStore(const Path & path, unsigned long long & bytesFr 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); } |