diff options
-rw-r--r-- | contrib/ChangeLog | 4 | ||||
-rwxr-xr-x | contrib/testsuite-management/validate_failures.py | 2 |
2 files changed, 5 insertions, 1 deletions
diff --git a/contrib/ChangeLog b/contrib/ChangeLog index 2e4db76d18e..54304c9b510 100644 --- a/contrib/ChangeLog +++ b/contrib/ChangeLog @@ -1,5 +1,9 @@ 2013-02-06 Diego Novillo <dnovillo@google.com> + * testsuite-management/validate_failures.py: Fix typo. + +2013-02-06 Diego Novillo <dnovillo@google.com> + * testsuite-management/validate_failures.py: Update Copyright years. Request contributions not to use Python features newer diff --git a/contrib/testsuite-management/validate_failures.py b/contrib/testsuite-management/validate_failures.py index 76f9aab1087..74dbcfb035c 100755 --- a/contrib/testsuite-management/validate_failures.py +++ b/contrib/testsuite-management/validate_failures.py @@ -362,7 +362,7 @@ def GetManifestPath(srcdir, target, user_provided_must_exist): Error('Manifest does not exist: %s' % manifest_path) return manifest_path else: - assert srdir and target + assert srcdir and target return _MANIFEST_PATH_PATTERN % (srcdir, _MANIFEST_SUBDIR, target) |