Files @ e5ccabbc3cd7
Branch filter:

Location: kallithea/kallithea/lib/vcs/backends/hg/__init__.py

Thomas De Schampheleire
release: merge default to stable for 0.6.0
# -*- coding: utf-8 -*-
"""
    vcs.backends.hg
    ~~~~~~~~~~~~~~~

    Mercurial backend implementation.

    :created_on: Apr 8, 2010
    :copyright: (c) 2010-2011 by Marcin Kuzminski, Lukasz Balcerzak.
"""

from kallithea.lib.vcs.utils import hgcompat

from .changeset import MercurialChangeset
from .inmemory import MercurialInMemoryChangeset
from .repository import MercurialRepository
from .workdir import MercurialWorkdir


__all__ = [
    'MercurialRepository', 'MercurialChangeset',
    'MercurialInMemoryChangeset', 'MercurialWorkdir',
]

hgcompat.monkey_do()