Skip to content

Commit

Permalink
Merge pull request #1147 from pjf/1146_rr_fix
Browse files Browse the repository at this point in the history
KeyNotFoundException fix in ResolveStanza
  • Loading branch information
RichardLake committed Jun 22, 2015
2 parents d296799 + 248c369 commit 0ff265c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Core/Relationships/RelationshipResolver.cs
Original file line number Diff line number Diff line change
Expand Up @@ -308,7 +308,7 @@ private void ResolveStanza(IEnumerable<RelationshipDescriptor> stanza, Selection
throw new InconsistentKraken(
string.Format(
"{0} requires a version {1}. However a incompatible version, {2}, is already installed",
dep_name, descriptor.RequiredVersion, modlist[dep_name].version));
dep_name, descriptor.RequiredVersion, registry.InstalledVersion(dep_name)));
}

List<CkanModule> candidates = registry.LatestAvailableWithProvides(dep_name, kspversion, descriptor)
Expand Down

0 comments on commit 0ff265c

Please sign in to comment.