Mercurial > hg > hg-git
changeset 362:5b6961384ee2
demandimport: defend against collections breakage in new dulwich
author | Augie Fackler <durin42@gmail.com> |
---|---|
date | Fri, 29 Oct 2010 08:31:42 -0500 (2010-10-29) |
parents | 4e1ac77815c3 |
children | 07f6613fe0df |
files | hggit/__init__.py |
diffstat | 1 files changed, 5 insertions(+), 0 deletions(-) [+] |
line wrap: on
line diff
--- a/hggit/__init__.py +++ b/hggit/__init__.py @@ -19,12 +19,17 @@ import os from mercurial import commands +from mercurial import demandimport from mercurial import extensions from mercurial import hg from mercurial import localrepo from mercurial import util as hgutil from mercurial.i18n import _ +demandimport.ignore.extend([ + 'collections', + ]) + import gitrepo, hgrepo from git_handler import GitHandler