Remove redundant space in usage errors
This commit is contained in:
parent
a8925a510c
commit
c6849e2dee
1 changed files with 1 additions and 1 deletions
|
@ -267,7 +267,7 @@ int handleExceptions(const string & programName, std::function<void()> fun)
|
||||||
return e.status;
|
return e.status;
|
||||||
} catch (UsageError & e) {
|
} catch (UsageError & e) {
|
||||||
printMsg(lvlError,
|
printMsg(lvlError,
|
||||||
format(error + " %1%\nTry ‘%2% --help’ for more information.")
|
format(error + "%1%\nTry ‘%2% --help’ for more information.")
|
||||||
% e.what() % programName);
|
% e.what() % programName);
|
||||||
return 1;
|
return 1;
|
||||||
} catch (BaseError & e) {
|
} catch (BaseError & e) {
|
||||||
|
|
Loading…
Reference in a new issue