From 231a36e203b21b2a11696bb28a33b2dd8d42d202 Mon Sep 17 00:00:00 2001 From: Alyssa Ross Date: Thu, 23 Jul 2020 04:33:04 +0000 Subject: 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 --- third_party/nix/src/libmain/shared.cc | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/third_party/nix/src/libmain/shared.cc b/third_party/nix/src/libmain/shared.cc index 3cbf59c887..b04bd279b9 100644 --- a/third_party/nix/src/libmain/shared.cc +++ b/third_party/nix/src/libmain/shared.cc @@ -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(); -- cgit 1.4.1