]> git.ipfire.org Git - people/ms/pakfire.git/commitdiff
Fix displaying wrong kind of ID for problem.
authorMichael Tremer <michael.tremer@ipfire.org>
Thu, 4 Aug 2011 14:54:04 +0000 (16:54 +0200)
committerMichael Tremer <michael.tremer@ipfire.org>
Thu, 4 Aug 2011 14:54:04 +0000 (16:54 +0200)
src/problem.c

index 77c916b20f320eb263336af36de4c23070a182ac..0e17dc35e76deb20d03f2c591d8b59168b0e4dcd 100644 (file)
@@ -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;