scripts/list-ci-changes.py |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit 600e490779a5bfedb7509ee925c07dbc9470d944
Author:     Stephan Bergmann <sberg...@redhat.com>
AuthorDate: Wed Oct 30 17:52:50 2019 +0100
Commit:     Miklos Vajna <vmik...@collabora.com>
CommitDate: Thu Oct 31 08:50:50 2019 +0100

    I don't have an logerrit in my ~/.ssh/config
    
    Change-Id: Ie93b3c83bcd20a7081ae1bd338ac1f27a72fcef2
    Reviewed-on: https://gerrit.libreoffice.org/81791
    Reviewed-by: Miklos Vajna <vmik...@collabora.com>
    Tested-by: Miklos Vajna <vmik...@collabora.com>

diff --git a/scripts/list-ci-changes.py b/scripts/list-ci-changes.py
index 99a8c1b..6cbc19e 100755
--- a/scripts/list-ci-changes.py
+++ b/scripts/list-ci-changes.py
@@ -23,7 +23,7 @@ import sys
 def getGerritChanges():
     ret = []
 
-    p = subprocess.Popen(["ssh", "logerrit", "gerrit", "query", 
"--format=json", "status:open project:core owner:self"], stdout=subprocess.PIPE)
+    p = subprocess.Popen(["ssh", "-p", "29418", "gerrit.libreoffice.org", 
"gerrit", "query", "--format=json", "status:open project:core owner:self"], 
stdout=subprocess.PIPE)
     lines = p.communicate()[0].decode('utf-8').splitlines()
     for line in lines:
         j = json.loads(line)
_______________________________________________
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits

Reply via email to