Add docstring for rcs, vcs modules

This patch adds docstring to explain what rcs/vcs modules are clearly.

Change-Id: Ie0904115f4feb47fb6e0da814204fd28326e316e
This commit is contained in:
Ken'ichi Ohmichi
2017-06-20 15:42:42 -07:00
parent 2639d52470
commit d0c50e1436
2 changed files with 4 additions and 0 deletions

View File

@@ -34,6 +34,8 @@ class RcsException(Exception):
class Rcs(object):
"""Base object for Review Control System"""
def __init__(self):
pass

View File

@@ -28,6 +28,8 @@ LOG = logging.getLogger(__name__)
class Vcs(object):
"""Base object for Version Control System"""
def __init__(self, repo, sources_root):
self.repo = repo
self.sources_root = sources_root