diff options
author | W. Trevor King <wking@drexel.edu> | 2009-12-13 07:45:43 -0500 |
---|---|---|
committer | W. Trevor King <wking@drexel.edu> | 2009-12-13 07:45:43 -0500 |
commit | ca52b5cca130fb3bd810276d9de1f198df3cf5b7 (patch) | |
tree | 0d525efdb4f2ac17c37feebf32911f669a6a783a /libbe/storage/vcs/hg.py | |
parent | 55e0abfa27b693768f495044d10444d9d92e4fca (diff) | |
download | bugseverywhere-ca52b5cca130fb3bd810276d9de1f198df3cf5b7.tar.gz |
.bzr transition.
Diffstat (limited to 'libbe/storage/vcs/hg.py')
-rw-r--r-- | libbe/storage/vcs/hg.py | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/libbe/storage/vcs/hg.py b/libbe/storage/vcs/hg.py index fb3ee3f..a8504d0 100644 --- a/libbe/storage/vcs/hg.py +++ b/libbe/storage/vcs/hg.py @@ -41,7 +41,10 @@ def new(): class Hg(base.VCS): name='hg' client='hg' - 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') |