On 07/ 7/10 11:09 AM, [email protected] wrote:
Folks, This is a two-line fix for a problem that Michael Schuster ran across. I had tested this before, so I'm a bit puzzled how this bug got introduced. Fortunately, it's an easy fix. I've attached the diff instead of a webrev, because it's so small.Thanks, -j diff -r dd38788677ea -r 4156ed4cd558 src/modules/client/transport/exception.py --- a/src/modules/client/transport/exception.py Mon Jul 05 15:06:04 2010 +0100 +++ b/src/modules/client/transport/exception.py Wed Jul 07 11:07:40 2010 -0700 @@ -227,9 +227,9 @@ self.uuid = uuid def __str__(self): - s = "Framework stall: " % self.code + s = "Framework stall" if self.url: - s += "\nURL: '%s'." % self.url + s += ":\nURL: '%s'." % self.url return s def __cmp__(self, other):
This seems right to me, -Shawn _______________________________________________ pkg-discuss mailing list [email protected] http://mail.opensolaris.org/mailman/listinfo/pkg-discuss
