From b773205cfaf0bedb1b67f28947dc69cb40f12f01 Mon Sep 17 00:00:00 2001 From: Dan Prince Date: Wed, 27 Mar 2013 14:18:21 -0400 Subject: [PATCH] Fix gerrit ssh command. Add back a missing space which we accidentally removed in 932bfca. This should fix issues causing zero results to display. Change-Id: I86ae8a7217862811438dc15282415f47bf09bfb0 Reviewed-on: https://review.openstack.org/25545 Approved: Dan Prince Reviewed-by: Dan Prince Tested-by: Jenkins --- reviewday/gerrit.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/reviewday/gerrit.py b/reviewday/gerrit.py index 7fa8a02..0b95c89 100644 --- a/reviewday/gerrit.py +++ b/reviewday/gerrit.py @@ -5,7 +5,7 @@ import json def reviews(project, status="open", branch="master"): arr = [] cmd = 'ssh review gerrit' \ - 'query "status: %s project: openstack/%s branch: %s"' \ + ' query "status: %s project: openstack/%s branch: %s"' \ ' --current-patch-set --format JSON' \ % (status, project, branch) p = subprocess.Popen([cmd], shell=True, stdin=subprocess.PIPE,