diff options
Diffstat (limited to 'libbe/vcs.py')
-rw-r--r-- | libbe/vcs.py | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/libbe/vcs.py b/libbe/vcs.py index e2916e6..3ee1a44 100644 --- a/libbe/vcs.py +++ b/libbe/vcs.py @@ -18,6 +18,12 @@ # with this program; if not, write to the Free Software Foundation, Inc., # 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. +""" +Define the base VCS (Version Control System) class, which should be +subclassed by other Version Control System backends. The base class +implements a "do not version" VCS. +""" + from subprocess import Popen, PIPE import codecs import os |