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

This commit is contained in:
Eelco Dolstra 2011-12-05 21:04:20 +00:00
parent 000160f5b9
commit c8c0380744
1 changed files with 1 additions and 1 deletions

View File

@ -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);
}