Add missed s interpolator, as pointed out by @xuwei-k

This commit is contained in:
Mark Harrah 2013-10-08 13:38:33 -04:00
parent 541375cde6
commit 7d49bcdbf2
1 changed files with 1 additions and 1 deletions

View File

@ -22,7 +22,7 @@ private[sbt] object APIMappings
private[this] def parseURL(s: String, forEntry: File, log: Logger): Option[URL] =
try Some(new URL(s)) catch { case e: MalformedURLException =>
log.warn("Invalid API base URL '$s' for classpath entry '$forEntry': ${e.toString}")
log.warn(s"Invalid API base URL '$s' for classpath entry '$forEntry': ${e.toString}")
None
}