Mercurial > hg-stable
diff hgext/convert/common.py @ 4760:07efcce17d28
convert: add -r argument specifying latest revision to convert
author | Brendan Cully <brendan@kublai.com> |
---|---|
date | Sun, 01 Jul 2007 15:02:15 -0700 |
parents | 20ec5cc02f18 |
children | 47091c8d028e |
line wrap: on
line diff
--- a/hgext/convert/common.py Sun Jul 01 12:58:08 2007 -0700 +++ b/hgext/convert/common.py Sun Jul 01 15:02:15 2007 -0700 @@ -12,7 +12,7 @@ class converter_source(object): """Conversion source interface""" - def __init__(self, ui, path): + def __init__(self, ui, path, rev=None): """Initialize conversion source (or raise NoRepo("message") exception if path is not a valid repository)""" raise NotImplementedError()