author | Brendan Cully <brendan@kublai.com> |
Wed, 30 Aug 2006 12:55:10 -0700 | |
changeset 3054 | 51b7f792e473 |
parent 3031 | eba7c78c80fe |
child 3055 | efd26ceedafb |
--- a/hgext/patchbomb.py Wed Aug 30 10:21:02 2006 -0700 +++ b/hgext/patchbomb.py Wed Aug 30 12:55:10 2006 -0700 @@ -140,7 +140,9 @@ if line.startswith('#'): if line.startswith('# Node ID'): node = line.split()[-1] continue - if line.startswith('diff -r'): break + if (line.startswith('diff -r') + or line.startswith('diff --git')): + break desc.append(line) if not node: raise ValueError