From a5a7e89325193eae78fd37053c7a017bb10b0919 Mon Sep 17 00:00:00 2001 From: Michael Tremer Date: Thu, 4 Aug 2011 16:54:04 +0200 Subject: [PATCH] Fix displaying wrong kind of ID for problem. --- src/problem.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/problem.c b/src/problem.c index 77c916b20..0e17dc35e 100644 --- a/src/problem.c +++ b/src/problem.c @@ -188,7 +188,7 @@ PyObject *Problem_string(ProblemObject *self) { case SOLVER_RULE_RPM_SAME_NAME: snprintf(s, STRING_SIZE - 1, _("cannot install both %s and %s"), - pool_dep2str(pool, self->source), pool_solvid2str(pool, self->target) + pool_solvid2str(pool, self->source), pool_solvid2str(pool, self->target) ); break; -- 2.39.5