We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 52a242f commit 703cdb6Copy full SHA for 703cdb6
src/error_handling.cpp
@@ -172,7 +172,7 @@ namespace Sass {
172
std::string rel_path(Sass::File::abs2rel(pstate.path, cwd, cwd));
173
std::string output_path(Sass::File::path_for_console(rel_path, abs_path, pstate.path));
174
175
- 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;
176
std::cerr << msg << std::endl << std::endl;
177
}
178
0 commit comments