From 2fde7e6a2f9c91f1193b07194d8400124a1a5500 Mon Sep 17 00:00:00 2001 From: Marcel Greter Date: Mon, 4 Jul 2016 00:46:21 +0200 Subject: [PATCH] Adjust error message to comply with ruby sass --- src/context.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/context.cpp b/src/context.cpp index 9beec1f187..1b219aef40 100644 --- a/src/context.cpp +++ b/src/context.cpp @@ -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); }