Remove redundant space in usage errors

This commit is contained in:
Eelco Dolstra 2014-10-14 11:41:04 +02:00
parent a8925a510c
commit c6849e2dee

View file

@ -267,7 +267,7 @@ int handleExceptions(const string & programName, std::function<void()> fun)
return e.status;
} catch (UsageError & e) {
printMsg(lvlError,
format(error + " %1%\nTry %2% --help for more information.")
format(error + "%1%\nTry %2% --help for more information.")
% e.what() % programName);
return 1;
} catch (BaseError & e) {