bin/crashreportScraper.py | 1 - bin/symbolstore.py | 2 +- 2 files changed, 1 insertion(+), 2 deletions(-)
New commits: commit 623ae0a44f55ca4bf6f99a0ea0e0dbe55a95ec67 Author: LeSasse <l.sa...@fz-juelich.de> AuthorDate: Wed Mar 27 09:39:49 2024 +0100 Commit: Noel Grandin <noel.gran...@collabora.co.uk> CommitDate: Thu Mar 28 08:45:01 2024 +0100 tdf#158803 remove unused maths import Change-Id: I1d3d687a470ff5d197d8b9d174d37163319f121b Reviewed-on: https://gerrit.libreoffice.org/c/core/+/165373 Reviewed-by: Noel Grandin <noel.gran...@collabora.co.uk> Tested-by: Noel Grandin <noel.gran...@collabora.co.uk> diff --git a/bin/crashreportScraper.py b/bin/crashreportScraper.py index 6ce91bcba189..37636f2c462e 100755 --- a/bin/crashreportScraper.py +++ b/bin/crashreportScraper.py @@ -15,7 +15,6 @@ import requests from bs4 import BeautifulSoup import sys import os -import math from datetime import datetime import urllib.parse import re commit 8a92d296bee8ce3b010fab47c48d23f68c4b25a0 Author: LeSasse <l.sa...@fz-juelich.de> AuthorDate: Wed Mar 27 09:37:17 2024 +0100 Commit: Noel Grandin <noel.gran...@collabora.co.uk> CommitDate: Thu Mar 28 08:44:47 2024 +0100 tdf#158803 filename is undefined, should be self.root Change-Id: Ib533900433586abb0eca01703452aa593d8f2016 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/165372 Reviewed-by: Noel Grandin <noel.gran...@collabora.co.uk> Tested-by: Noel Grandin <noel.gran...@collabora.co.uk> diff --git a/bin/symbolstore.py b/bin/symbolstore.py index c3a2df086084..c6aaa2ecadf8 100755 --- a/bin/symbolstore.py +++ b/bin/symbolstore.py @@ -158,7 +158,7 @@ class CVSFileInfo(VCSFileInfo): if len(parts) > 1: # we don't want the extra colon return parts[1].replace(":","") - print("Failed to get CVS Root for %s" % filename, file=sys.stderr) + print("Failed to get CVS Root for %s" % self.root, file=sys.stderr) return None def GetRevision(self):