diff --git a/README.asciidoc b/README.asciidoc index 24598a780..b5ea0fb6d 100644 --- a/README.asciidoc +++ b/README.asciidoc @@ -156,8 +156,8 @@ Contributors, sorted by the number of commits in descending order: * Felix Van der Jeugt * Martin Tournoij * Daniel Karbach -* Raphael Pierzina * Kevin Velghe +* Raphael Pierzina * Joel Torstensson * Patric Schmitz * Tarcisio Fedrizzi diff --git a/scripts/dev/get_coredumpctl_traces.py b/scripts/dev/get_coredumpctl_traces.py index 76936e319..49620a96a 100644 --- a/scripts/dev/get_coredumpctl_traces.py +++ b/scripts/dev/get_coredumpctl_traces.py @@ -77,7 +77,11 @@ def get_info(pid): for line in output.split('\n'): if not line.strip(): continue - key, value = line.split(':', maxsplit=1) + try: + key, value = line.split(':', maxsplit=1) + except ValueError: + # systemd stack output + continue data[key.strip()] = value.strip() return data diff --git a/tests/end2end/features/yankpaste.feature b/tests/end2end/features/yankpaste.feature index f67c65103..b568f23fe 100644 --- a/tests/end2end/features/yankpaste.feature +++ b/tests/end2end/features/yankpaste.feature @@ -263,11 +263,11 @@ Feature: Yanking and pasting. And I run :click-element id qute-textarea And I wait for "Clicked editable element!" in the log And I run :insert-text Hello world - And I press the keys "" - And I run :yank selection + And I run :jseval console.log("textarea contents: " + document.getElementById('qute-textarea').value); + # Enable javascript again for the other tests And I set content -> allow-javascript to true # Compare - Then the clipboard should contain "Hello world" + Then the javascript message "textarea contents: Hello world" should be logged Scenario: Inserting text into a text field at specific position When I set general -> log-javascript-console to info