aboutsummaryrefslogtreecommitdiffstats
path: root/libbe/storage/vcs/git.py
diff options
context:
space:
mode:
authorW. Trevor King <wking@drexel.edu>2009-12-13 07:45:43 -0500
committerW. Trevor King <wking@drexel.edu>2009-12-13 07:45:43 -0500
commitca52b5cca130fb3bd810276d9de1f198df3cf5b7 (patch)
tree0d525efdb4f2ac17c37feebf32911f669a6a783a /libbe/storage/vcs/git.py
parent55e0abfa27b693768f495044d10444d9d92e4fca (diff)
downloadbugseverywhere-ca52b5cca130fb3bd810276d9de1f198df3cf5b7.tar.gz
.bzr transition.
Diffstat (limited to 'libbe/storage/vcs/git.py')
-rw-r--r--libbe/storage/vcs/git.py7
1 files changed, 6 insertions, 1 deletions
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')