Skip to content

Commit 703cdb6

Browse files
committed
Tweak warning message format
Added a missing trailing `:` to match specs.
1 parent 52a242f commit 703cdb6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/error_handling.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -172,7 +172,7 @@ namespace Sass {
172172
std::string rel_path(Sass::File::abs2rel(pstate.path, cwd, cwd));
173173
std::string output_path(Sass::File::path_for_console(rel_path, abs_path, pstate.path));
174174

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

0 commit comments

Comments
 (0)