From ca52b5cca130fb3bd810276d9de1f198df3cf5b7 Mon Sep 17 00:00:00 2001 From: "W. Trevor King" Date: Sun, 13 Dec 2009 07:45:43 -0500 Subject: .bzr transition. --- libbe/storage/vcs/git.py | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) (limited to 'libbe/storage/vcs/git.py') diff --git a/libbe/storage/vcs/git.py b/libbe/storage/vcs/git.py index 02144b5..0b006f3 100644 --- a/libbe/storage/vcs/git.py +++ b/libbe/storage/vcs/git.py @@ -22,7 +22,9 @@ Git backend. """ import os +import os.path import re +import shutil import sys import unittest @@ -39,7 +41,10 @@ def new(): class Git(base.VCS): name='git' client='git' - versioned=True + + def __init__(self, *args, **kwargs): + base.VCS.__init__(self, *args, **kwargs) + self.versioned = True def _vcs_version(self): status,output,error = self._u_invoke_client('--version') -- cgit