view rhodecode/lib/vcs/backends/hg/__init__.py @ 2899:c76aa8b06179 beta

Fix typos.
author Andrew Shadura <bugzilla@tut.by>
date Mon, 08 Oct 2012 00:08:46 +0200
parents 324ac367a4da
children
line wrap: on
line source

# -*- coding: utf-8 -*-
"""
    vcs.backends.hg
    ~~~~~~~~~~~~~~~~

    Mercurial backend implementation.

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

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


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