test-bugzilla-files/test-bugzilla-files.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)
New commits: commit acf14295f1450f02e06d1bc508b68df99a50ab15 Author: Caolán McNamara <caol...@redhat.com> AuthorDate: Thu Sep 22 13:27:50 2022 +0100 Commit: Caolán McNamara <caol...@redhat.com> CommitDate: Thu Sep 22 14:29:51 2022 +0200 odfundiff_exclude_list.txt path isn't right Change-Id: I9815f91a0e9edc56be6be8afb00d3f86ec5fc9a4 Reviewed-on: https://gerrit.libreoffice.org/c/dev-tools/+/140428 Tested-by: Caolán McNamara <caol...@redhat.com> Reviewed-by: Caolán McNamara <caol...@redhat.com> diff --git a/test-bugzilla-files/test-bugzilla-files.py b/test-bugzilla-files/test-bugzilla-files.py index 50a7508..16d337e 100644 --- a/test-bugzilla-files/test-bugzilla-files.py +++ b/test-bugzilla-files/test-bugzilla-files.py @@ -668,7 +668,7 @@ if __name__ == "__main__": exclude_list = [] if os.path.exists(os.environ["CRASHTESTDATA"] + "/odfundiff_exclude_list.txt"): - with open('os.environ["CRASHTESTDATA"] + /odfundiff_exclude_list.txt') as file: + with open(os.environ["CRASHTESTDATA"] + "/odfundiff_exclude_list.txt") as file: exclude_list = file.readlines() exclude_list = [line.rstrip() for line in exclude_list]