From 617b8d796912b5f2884c7cf2c66a02cc15bd4295 Mon Sep 17 00:00:00 2001 From: Thierry Carrez Date: Wed, 23 May 2012 14:18:43 +0200 Subject: [PATCH] Fix typo causing update_bug hook failure A typo in update_bug.py recent changes was causing hook failure. Fixes bug 1003377. Change-Id: Ie86a8431b19cbf1777ec3ca6abaf0df51f7d51f7 --- update_bug.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/update_bug.py b/update_bug.py index da35d12..bf8555d 100755 --- a/update_bug.py +++ b/update_bug.py @@ -123,7 +123,7 @@ def git2lp(full_project_name): def is_direct_release(full_project_name): """Test against a list of projects who directly release changes.""" - return full_project name in [ + return full_project_name in [ 'openstack-ci/devstack-gate', 'openstack-ci/lodgeit', 'openstack-ci/meetbot',