> + fmt = "%s%s.%s:"
> fmt_args = [classname, methodname]
> +
> + spaces = len(stack) * ' '
> + fmt_args.insert(0, spaces)
Why not:
spaces = len(stack) * ' '
fmt = "%s%s.%s:"
fmt_args = [spaces, classname, methodname]
Otherwise it is a nice thing, hopefully the call stack doesn't get so
deep that the lines break on a normal terminal.
Ales
_______________________________________________
Anaconda-devel-list mailing list
Anaconda-devel-list@xxxxxxxxxx
https://www.redhat.com/mailman/listinfo/anaconda-devel-list