[Libreoffice-commits] dev-tools.git: esc-reporting/esc-collect.py

Shinnok admin at shinnok.com
Wed Oct 25 10:55:39 UTC 2017


 esc-reporting/esc-collect.py |    4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

New commits:
commit d7de5c251fd51606cd1038bae33ac9aa20679ca5
Author: Shinnok <admin at shinnok.com>
Date:   Wed Oct 25 11:28:11 2017 +0200

    Nginx uses amp. for GET params.
    
    Change-Id: Ifd2581b13c9dda4f9d38954784a2dc5d34496f1b
    Reviewed-on: https://gerrit.libreoffice.org/43817
    Reviewed-by: Thorsten Behrens <Thorsten.Behrens at CIB.de>
    Tested-by: Thorsten Behrens <Thorsten.Behrens at CIB.de>

diff --git a/esc-reporting/esc-collect.py b/esc-reporting/esc-collect.py
index 50fe6b7..d336354 100755
--- a/esc-reporting/esc-collect.py
+++ b/esc-reporting/esc-collect.py
@@ -679,13 +679,13 @@ def get_crash(cfg):
     fileName = cfg['homedir'] + 'dump/crash_dump.json'
     rawList = {'crashtest': {}, 'crashreport': {}}
     print("Updating crashtest dump")
-    dirList = util_load_url('http://dev-builds.libreoffice.org/crashtest/?C=M;O=D', useRaw=True)
+    dirList = util_load_url('http://dev-builds.libreoffice.org/crashtest/?C=M&O=D', useRaw=True)
     # find newest entry by using sort - in nginx' fancyindex first row is parent-directory
     # the second ones is most recent dir that was created. Only regular entries have a title
     # attribute though, so use that as a shortcut, skip 
     inx = dirList.find('title="', 0)
     if inx == -1:
-       print("ERROR: http://dev-builds.libreoffice.org/crashtest/?C=M;O=D not showing DIR list")
+       print("ERROR: http://dev-builds.libreoffice.org/crashtest/?C=M&O=D not showing DIR list")
        return
     end = dirList.find('"', inx+7)
     url = 'http://dev-builds.libreoffice.org/crashtest/' + dirList[inx:end] + '/'


More information about the Libreoffice-commits mailing list