From a863e866d5ed5b58ac15e7f4d85d84da841c264d Mon Sep 17 00:00:00 2001 From: Mark Harrah Date: Tue, 9 Feb 2010 18:54:30 -0500 Subject: [PATCH] small logging fix --- src/main/scala/sbt/Project.scala | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/scala/sbt/Project.scala b/src/main/scala/sbt/Project.scala index 2a2002438..0ff98d73d 100644 --- a/src/main/scala/sbt/Project.scala +++ b/src/main/scala/sbt/Project.scala @@ -200,7 +200,7 @@ trait Project extends TaskManager with Dag[Project] with BasicEnvironment result match { case LoadSetupDeclined => Predef.error("No project exists at path " + path) - case lse: LoadSetupError => Predef.error("Error setting up new project at path " + Path + " : " + lse.message) + case lse: LoadSetupError => Predef.error("Error setting up new project at path " + path + " : " + lse.message) case err: LoadError => Predef.error("Error loading project at path " + path + " : " + err.message) case success: LoadSuccess => success.project }