diff options
Diffstat (limited to 'lldb/utils/sync-source/syncsource.py')
-rw-r--r-- | lldb/utils/sync-source/syncsource.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lldb/utils/sync-source/syncsource.py b/lldb/utils/sync-source/syncsource.py index 409d72c3087..736aefd9a35 100644 --- a/lldb/utils/sync-source/syncsource.py +++ b/lldb/utils/sync-source/syncsource.py @@ -234,7 +234,7 @@ def sync_configured_sources(options, configuration, default_excludes): if len(transfer_specs) > 0: transfer_agent.transfer(transfer_specs, options.dry_run) else: - raise "nothing to transfer, bad configuration?" + raise Exception("nothing to transfer, bad configuration?") def main(): |