Bug 1681140 - python3 - fix malformed \N character escape is-parseable (py3) errors in testing/mozharness/config r=jgraham,marionette-reviewers

Differential Revision: https://phabricator.services.mozilla.com/D98986
This commit is contained in:
Bob Clary 2020-12-11 11:32:50 +00:00
Родитель f2eea9a341
Коммит da1cc619a8
2 изменённых файлов: 2 добавлений и 2 удалений

Просмотреть файл

@ -90,7 +90,7 @@ config = {
"cmd": [
"powershell",
"-command",
"\"&{$p='HKCU:SOFTWARE\Microsoft\Windows\CurrentVersion\Notifications\Settings\Windows.SystemToast.SecurityAndMaintenance';if(!(Test-Path -Path $p)){&New-Item -Path $p -Force}&Set-ItemProperty -Path $p -Name Enabled -Value 0}\"", # noqa
r"\"&{$p='HKCU:SOFTWARE\Microsoft\Windows\CurrentVersion\Notifications\Settings\Windows.SystemToast.SecurityAndMaintenance';if(!(Test-Path -Path $p)){&New-Item -Path $p -Force}&Set-ItemProperty -Path $p -Name Enabled -Value 0}\"", # noqa
],
"architectures": ["32bit", "64bit"],
"halt_on_failure": True,

Просмотреть файл

@ -74,7 +74,7 @@ config = {
"cmd": [
"powershell",
"-command",
"\"&{$p='HKCU:SOFTWARE\Microsoft\Windows\CurrentVersion\Notifications\Settings\Windows.SystemToast.SecurityAndMaintenance';if(!(Test-Path -Path $p)){&New-Item -Path $p -Force}&Set-ItemProperty -Path $p -Name Enabled -Value 0}\"", # noqa
r"\"&{$p='HKCU:SOFTWARE\Microsoft\Windows\CurrentVersion\Notifications\Settings\Windows.SystemToast.SecurityAndMaintenance';if(!(Test-Path -Path $p)){&New-Item -Path $p -Force}&Set-ItemProperty -Path $p -Name Enabled -Value 0}\"", # noqa
],
"architectures": ["32bit", "64bit"],
"halt_on_failure": True,