From patchwork Wed Feb 6 22:01:21 2013 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: [committed] Fix typo in validate_failures.py Date: Wed, 06 Feb 2013 12:01:21 -0000 From: Diego Novillo X-Patchwork-Id: 218782 Message-Id: <20130206220121.GA27294@google.com> To: gcc-patches@gcc.gnu.org, David Li I misspelled srcdir in an assertion (sorry David!). Committed to trunk. * testsuite-management/validate_failures.py: Fix typo. diff --git a/contrib/testsuite-management/validate_failures.py b/contrib/testsuite-management/validate_failures.py index 76f9aab..74dbcfb 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)