mirror of https://github.com/sbt/sbt.git
Add missed s interpolator, as pointed out by @xuwei-k
This commit is contained in:
parent
541375cde6
commit
7d49bcdbf2
|
|
@ -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
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue