blob: 1c0ba6f54358e005c3419547f1b20829a30f11dc (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
# Copyright (C) 2010, 2011 Sebastian Thiel (byronimo@gmail.com) and contributors
#
# This module is part of GitDB and is released under
# the New BSD License: http://www.opensource.org/licenses/bsd-license.php
"""Module providing adaptors to maintain backwards compatability"""
class RepoCompatInterface(object):
"""Interface to install backwards compatability of the new complex repository
types with the previous, all in one, repository."""
@property
def bare(self):
return self.is_bare
|