comparison hgext/convert/common.py @ 5400:d9057f00d343

convert: change SKIPREV to 'SKIP'
author Alexis S. L. Carvalho <alexis@cecm.usp.br>
date Sat, 06 Oct 2007 15:30:15 -0300
parents 8a2915f57dfc
children d0c67b52ac01
comparison
equal deleted inserted replaced
5399:18f8abefdb2a 5400:d9057f00d343
15 s = base64.decodestring(s) 15 s = base64.decodestring(s)
16 return pickle.loads(s) 16 return pickle.loads(s)
17 17
18 class NoRepo(Exception): pass 18 class NoRepo(Exception): pass
19 19
20 SKIPREV = 'hg-convert-skipped-revision' 20 SKIPREV = 'SKIP'
21 21
22 class commit(object): 22 class commit(object):
23 def __init__(self, author, date, desc, parents, branch=None, rev=None): 23 def __init__(self, author, date, desc, parents, branch=None, rev=None):
24 self.author = author 24 self.author = author
25 self.date = date 25 self.date = date