summaryrefslogtreecommitdiffstats
path: root/lldb/utils/sync-source/lib/transfer/transfer_spec.py
blob: 12da8b64aa2a41c70533c38ab490a839716d0b76 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
class TransferSpec(object):

    def __init__(self, source_path, exclude_paths, dest_path):
        self.source_path = source_path
        self.exclude_paths = exclude_paths
        self.dest_path = dest_path

    def __repr__(self):
        fmt = (
            "TransferSpec(source_path='{}', exclude_paths='{}', "
            "dest_path='{}')")
        return fmt.format(self.source_path, self.exclude_paths, self.dest_path)
OpenPOWER on IntegriCloud