From: Michael Tremer Date: Thu, 4 Aug 2011 14:54:04 +0000 (+0200) Subject: Fix displaying wrong kind of ID for problem. X-Git-Tag: 0.9.5~4 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=a5a7e89325193eae78fd37053c7a017bb10b0919;p=pakfire.git Fix displaying wrong kind of ID for problem. --- 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;