diff options
Diffstat (limited to 'clang/utils/token-delta.py')
-rwxr-xr-x | clang/utils/token-delta.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/clang/utils/token-delta.py b/clang/utils/token-delta.py index 327fa9221f0..f91254711d6 100755 --- a/clang/utils/token-delta.py +++ b/clang/utils/token-delta.py @@ -37,7 +37,7 @@ class DeltaAlgorithm(object): # O(N^2) case unless user requests it. if not force: if not self.getTestResult(changes): - raise ValueError,'Initial test passed to delta fails.' + raise ValueError('Initial test passed to delta fails.') # Check empty set first to quickly find poor test functions. if self.getTestResult(set()): |