aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPascal Rigaux <pixel@mandriva.com>2007-09-28 09:11:51 +0000
committerPascal Rigaux <pixel@mandriva.com>2007-09-28 09:11:51 +0000
commit870541e8fa141d07a33396c2c92aedf0623a492e (patch)
tree437b1d3c8d892fc541e7a7714c3a44a4269b82c8
parentdc75370e54dc39c774f1427a8c9efb0cffa8de3f (diff)
downloadperl-URPM-870541e8fa141d07a33396c2c92aedf0623a492e.tar
perl-URPM-870541e8fa141d07a33396c2c92aedf0623a492e.tar.gz
perl-URPM-870541e8fa141d07a33396c2c92aedf0623a492e.tar.bz2
perl-URPM-870541e8fa141d07a33396c2c92aedf0623a492e.tar.xz
perl-URPM-870541e8fa141d07a33396c2c92aedf0623a492e.zip
indent debug message so that "conflict above" message can still be meaningful
-rw-r--r--URPM/Resolve.pm2
1 files changed, 1 insertions, 1 deletions
diff --git a/URPM/Resolve.pm b/URPM/Resolve.pm
index 3cdb326..c953c02 100644
--- a/URPM/Resolve.pm
+++ b/URPM/Resolve.pm
@@ -1002,7 +1002,7 @@ sub _no_unsatisfied_requires {
my ($urpm, $db, $state, $pkg, $n) = @_;
my @l = unsatisfied_requires($urpm, $db, $state, $pkg, name => $n);
- @l and $urpm->{debug_URPM}("not promoting " . $pkg->fullname . " because of @l") if $urpm->{debug_URPM};
+ @l and $urpm->{debug_URPM}(" (not promoting " . $pkg->fullname . " because of @l)") if $urpm->{debug_URPM};
@l == 0;
}