-
-
-
-
-
We end up creating this thing twice in here, with much of the same data. Can you refactor the code before this such that we eventually fall out into this one statement, building using the path variables calculated above? For example, instead of doing: if not os.path.exists(...): return RepositoryInfo(...) # Other code here Do: if os.path.exists(...): # Other code here return RepositoryInfo(...)
-
post-review: support for plain mercurial repos
Review Request #869 — Created May 18, 2009 and discarded
Adds a client for plain mercurial repos (not hgsubversion). - renamed the hgsubversion class to MercurialSVNClient - added a copy named MercurialClient using plain hg command lines
tested with: $ hg --version Mercurial Distributed SCM (version 1.2.1)