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