error messages start in lowercase

Signed-off-by: Shea Levy <shea@shealevy.com>
This commit is contained in:
Shea Levy 2014-02-12 07:26:35 -05:00
parent 2246aa77d2
commit 7438f0bc2b
2 changed files with 3 additions and 3 deletions

View file

@ -89,7 +89,7 @@ static void query(std::pair<FdSink, FdSource> & pipes) {
std::cout << readLongLong(pipes.second) << std::endl;
}
} else
throw Error(format("Unknown substituter query `%1%'") % cmd);
throw Error(format("unknown substituter query `%1%'") % cmd);
std::cout << std::endl;
}
}