From 71058e3d9c89481ace08fef37205d8e415768fec Mon Sep 17 00:00:00 2001 From: Chris Eppstein Date: Sun, 29 Nov 2009 18:39:58 -0800 Subject: [PATCH] Fix a bug in the error handler while watching a project. --- lib/compass/commands/watch_project.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/compass/commands/watch_project.rb b/lib/compass/commands/watch_project.rb index 0e5e90cd..96b291bb 100644 --- a/lib/compass/commands/watch_project.rb +++ b/lib/compass/commands/watch_project.rb @@ -61,7 +61,7 @@ module Compass puts ">>> Change detected to: #{file}" compiler.run rescue StandardError => e - ::Compass::Exec.report_error(e, options) + ::Compass::Exec::Helpers.report_error(e, options) end end end