Ejemplo n.º 1
0
def checkout(repository_path, vss_project_path, local_path, ss_path=None):
    """
    Check out a VSS project to the specified local directory.

    Return the standard output.
    """

    vss = VSS(repository_path, ss_path)

    return vss.checkout(vss_project_path, recursive=True, get_folder=local_path, output='error')