On 2008-04-14 09:03:48 +0200, Karl Hasselström wrote: > Though I was under the impression that I'd tested it with a fully > applied stack ... I guess the test suite needs an addition or two. The real proble turned out to be a certain developer who remembers running the test suite before pushing out his branches, even though no such thing occurred. Ahem. This fixes the bug for me; I'll be squashing it into one of the other patches tonight. Sorry for the breakage. diff --git a/stgit/lib/log.py b/stgit/lib/log.py index 083a546..1830cbd 100644 --- a/stgit/lib/log.py +++ b/stgit/lib/log.py @@ -84,7 +84,7 @@ class Log(object): def pl(name): patches = [x.split() for x in self.commit.data.tree.data.entries[name][1] - .data.str.strip().split('\n')] + .data.str.strip().split('\n') if x] # TODO: handle case where we don't have the commit object. return ([pn for sha1, pn in patches], dict((pn, repo.get_commit(sha1)) for sha1, pn in patches)) -- Karl Hasselström, kha@xxxxxxxxxxx www.treskal.com/kalle -- To unsubscribe from this list: send the line "unsubscribe git" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html