Skip to content

Commit

Permalink
Tweak warning message format
Browse files Browse the repository at this point in the history
Added a missing trailing `:` to match specs.
  • Loading branch information
xzyfer committed Jan 15, 2018
1 parent 52a242f commit 0f5adb8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/error_handling.cpp
Expand Up @@ -172,7 +172,7 @@ namespace Sass {
std::string rel_path(Sass::File::abs2rel(pstate.path, cwd, cwd));
std::string output_path(Sass::File::path_for_console(rel_path, abs_path, pstate.path));

std::cerr << "WARNING on line " << pstate.line+1 << ", column " << pstate.column+1 << " of " << output_path << std::endl;
std::cerr << "WARNING on line " << pstate.line+1 << ", column " << pstate.column+1 << " of " << output_path << ":" << std::endl;
std::cerr << msg << std::endl << std::endl;
}

Expand Down

0 comments on commit 0f5adb8

Please sign in to comment.