We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5a799da commit 3f1ed9dCopy full SHA for 3f1ed9d
src/main.cpp
@@ -31,8 +31,10 @@ bool convert(std::string indata, std::string outpath) {
31
32
void print_help(std::string extra_message = "",
33
std::string filename = "wwtools") {
34
- std::cout << rang::fg::red << extra_message << rang::fg::reset << std::endl
35
- << std::endl;
+ if (!extra_message.empty()) {
+ std::cout << rang::fg::red << extra_message << rang::fg::reset << std::endl
36
+ << std::endl;
37
+ }
38
std::cout
39
<< "Please use the command in one of the following ways:\n"
40
<< " " << filename << " wem [input.wem] (--info)\n"
0 commit comments