Skip to content

Commit

Permalink
Adjust error message to comply with ruby sass
Browse files Browse the repository at this point in the history
  • Loading branch information
mgreter committed Jul 3, 2016
1 parent 61ab2ee commit 6f29dd8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/context.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -399,7 +399,7 @@ namespace Sass {
const Importer importer(imp_path, ctx_path);
Include include(load_import(importer, pstate));
if (include.abs_path.empty()) {
error("File to import not found or unreadable: " + imp_path + "\nParent style sheet: " + ctx_path, pstate);
error("File to import not found or unreadable: " + imp_path + ".\nParent style sheet: " + ctx_path, pstate);
}
imp->incs().push_back(include);
}
Expand Down

0 comments on commit 6f29dd8

Please # to comment.