From 912a9424eb7e77ee993009e401b7a9daaf4b951c Mon Sep 17 00:00:00 2001 From: Tony Breeds Date: Fri, 11 Mar 2016 12:52:03 +1100 Subject: [PATCH] Match path on disk to projects.yaml keys Ensure that we translate '_' characters to ' ' for matchin the keys in projects.yaml Change-Id: Ibfe24e2cdadc773fb69bdd4dd52df2bc0de6cb27 --- tools/check-candidacy.py | 1 + 1 file changed, 1 insertion(+) diff --git a/tools/check-candidacy.py b/tools/check-candidacy.py index f76d771c..6836255a 100755 --- a/tools/check-candidacy.py +++ b/tools/check-candidacy.py @@ -39,6 +39,7 @@ except: print "usage: %s candidacy_file" % sys.argv[0] exit(1) +project_name = project_name.replace('_', ' ') author = escape_author(author) if not os.path.isfile('.projects.yaml'):