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 <dprince@redhat.com>
Reviewed-by: Dan Prince <dprince@redhat.com>
Tested-by: Jenkins
This commit is contained in:
Dan Prince 2013-03-27 14:18:21 -04:00 committed by Jenkins
parent 2527835ac1
commit b773205cfa

View File

@ -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,