]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - utils/sync-source/lib/transfer/transfer_spec.py
Vendor import of lldb trunk r290819:
[FreeBSD/FreeBSD.git] / utils / sync-source / lib / transfer / transfer_spec.py
1 class TransferSpec(object):
2
3     def __init__(self, source_path, exclude_paths, dest_path):
4         self.source_path = source_path
5         self.exclude_paths = exclude_paths
6         self.dest_path = dest_path
7
8     def __repr__(self):
9         fmt = (
10             "TransferSpec(source_path='{}', exclude_paths='{}', "
11             "dest_path='{}')")
12         return fmt.format(self.source_path, self.exclude_paths, self.dest_path)