hgext/convert/common.py
changeset 5066 568bb3b4b815
parent 5024 7963438881f5
child 5076 ef338e34a906
equal deleted inserted replaced
5065:12930b97a729 5066:568bb3b4b815
     3 class NoRepo(Exception): pass
     3 class NoRepo(Exception): pass
     4 
     4 
     5 class commit(object):
     5 class commit(object):
     6     def __init__(self, author, date, desc, parents, branch=None, rev=None,
     6     def __init__(self, author, date, desc, parents, branch=None, rev=None,
     7                  copies={}):
     7                  copies={}):
     8         self.rev = None
       
     9         self.branch = None
       
    10         self.author = author
     8         self.author = author
    11         self.date = date
     9         self.date = date
    12         self.desc = desc
    10         self.desc = desc
    13         self.parents = parents
    11         self.parents = parents
    14         self.branch = branch
    12         self.branch = branch