minor improvements to conflict message. closes #132

This commit is contained in:
Mark Harrah 2011-08-23 19:51:50 -04:00
parent 964f83244a
commit 86c0ff1c09
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 specified by " + config.label + ":"
val msg = "Potentially incompatible versions of dependencies of " + config.label + ":"
val conflictMsgs =
for( (label, versions) <- conflicts ) yield
label + ": " + versions.mkString(", ")