"tahoe backup": fix --exclude-vcs docs to include Git

This commit is contained in:
Brian Warner 2010-01-27 12:10:44 -08:00
parent b4d3e23024
commit 52185053c3

View File

@ -283,9 +283,9 @@ class BackupOptions(VDriveOptions):
exclude_file.close() exclude_file.close()
def opt_exclude_vcs(self): def opt_exclude_vcs(self):
"""Exclude files and directories used by following version """Exclude files and directories used by following version control
control systems: 'CVS', 'RCS', 'SCCS', 'SVN', 'Arch', systems: CVS, RCS, SCCS, Git, SVN, Arch, Bazaar(bzr), Mercurial,
'Bazaar', 'Mercurial', and 'Darcs'.""" Darcs."""
for pattern in self.vcs_patterns: for pattern in self.vcs_patterns:
self.opt_exclude(pattern) self.opt_exclude(pattern)