diff options
Diffstat (limited to 'git/db/interface.py')
-rw-r--r-- | git/db/interface.py | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/git/db/interface.py b/git/db/interface.py index a4c05265..803f7769 100644 --- a/git/db/interface.py +++ b/git/db/interface.py @@ -150,7 +150,11 @@ class RootPathDB(object): :note: The base will not perform any accessablity checking as the base might not yet be accessible, but become accessible before the first access.""" - super(RootPathDB, self).__init__(root_path) + try: + super(RootPathDB, self).__init__(root_path) + except TypeError: + pass + # END handle py 2.6 #{ Interface def root_path(self): |