add missing newline in conflict warning

This commit is contained in:
Mark Harrah 2011-11-04 12:36:26 -04:00
parent f478b0b907
commit 2eab86bf25
1 changed files with 1 additions and 1 deletions

View File

@ -12,7 +12,7 @@ object ConflictWarning
val conflicts = IvyActions.groupedConflicts(config.filter, config.group)(report)
if(!conflicts.isEmpty)
{
val msg = "Potentially incompatible versions of dependencies of " + config.label + ":"
val msg = "Potentially incompatible versions of dependencies of " + config.label + ":\n "
val conflictMsgs =
for( (label, versions) <- conflicts ) yield
label + ": " + versions.mkString(", ")