# HG changeset patch # User Matt Mackall # Date 1268688992 18000 # Node ID 1ee60e82333cba7cfff191f706b1b3ae24db3ceb # Parent 1437542a9fd726b210ceff849bf84bc9c6e917e3# Parent 35893dcfd40cb0c7fd1bcd28a19158b19231a316 Merge with stable diff -r 1437542a9fd7 -r 1ee60e82333c hgext/convert/cvsps.py --- a/hgext/convert/cvsps.py Fri Mar 12 16:16:47 2010 -0600 +++ b/hgext/convert/cvsps.py Mon Mar 15 16:36:32 2010 -0500 @@ -32,6 +32,7 @@ .branchpoints- the branches that start at the current entry ''' def __init__(self, **entries): + self.synthetic = False self.__dict__.update(entries) def __repr__(self): @@ -296,8 +297,7 @@ assert match, _('expected revision number') e = logentry(rcs=scache(rcs), file=scache(filename), revision=tuple([int(x) for x in match.group(1).split('.')]), - branches=[], parent=None, - synthetic=False) + branches=[], parent=None) state = 6 elif state == 6: @@ -469,6 +469,7 @@ .branchpoints- the branches that start at the current entry ''' def __init__(self, **entries): + self.synthetic = False self.__dict__.update(entries) def __repr__(self): @@ -542,8 +543,7 @@ # "File file4 was added on branch ..." (synthetic, 1 entry) # "Add file3 and file4 to fix ..." (real, 2 entries) # Hence the check for 1 entry here. - synth = getattr(c.entries[0], 'synthetic', None) - c.synthetic = (len(c.entries) == 1 and synth) + c.synthetic = len(c.entries) == 1 and c.entries[0].synthetic # Sort files in each changeset