Add default repotype() to make pylint happy

This commit is contained in:
Daniel Martí 2014-04-02 23:37:29 +02:00
parent 8e87feff26
commit 3905143252

View file

@ -251,6 +251,9 @@ class vcs:
self.refreshed = False self.refreshed = False
self.srclib = None self.srclib = None
def repotype(self):
return None
# Take the local repository to a clean version of the given revision, which # Take the local repository to a clean version of the given revision, which
# is specificed in the VCS's native format. Beforehand, the repository can # is specificed in the VCS's native format. Beforehand, the repository can
# be dirty, or even non-existent. If the repository does already exist # be dirty, or even non-existent. If the repository does already exist