chore(3p/nix): fix extra space in usage error

Change-Id: Ic8f8820ba8967166354951cf13af5fa134a1b6b8
Reviewed-on: https://cl.tvl.fyi/c/depot/+/1353
Tested-by: BuildkiteCI
Reviewed-by: glittershark <grfn@gws.fyi>
This commit is contained in:
Alyssa Ross 2020-07-23 04:33:04 +00:00
parent 5183e92e4f
commit 231a36e203

View file

@ -300,8 +300,7 @@ int handleExceptions(const std::string& programName,
return e.status;
} catch (UsageError& e) {
LOG(INFO) << e.what();
LOG(INFO) << "Try '" << programName << " "
<< " --help' for more information.";
LOG(INFO) << "Try '" << programName << " --help' for more information.";
return 1;
} catch (BaseError& e) {
LOG(ERROR) << error << (settings.showTrace ? e.prefix() : "") << e.msg();