From 6c8abc647892a8083f504472c317a3235f0b99dc Mon Sep 17 00:00:00 2001 From: robotis Date: Tue, 17 Apr 2012 11:40:03 +0000 Subject: [PATCH] Fix error on non-existant include 2 --- lesscpy/scripts/compiler.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lesscpy/scripts/compiler.py b/lesscpy/scripts/compiler.py index 9c74507..b9ecd1c 100644 --- a/lesscpy/scripts/compiler.py +++ b/lesscpy/scripts/compiler.py @@ -140,7 +140,7 @@ def run(): else: scope.update(p.scope) else: - sys.exit('included file `%s` not found ...') + sys.exit('included file `%s` not found ...' % u) p = None f = formatter.Formatter(args) if not os.path.exists(args.target):