зеркало из https://github.com/mozilla/gecko-dev.git
servo: Merge #7769 - Fix build notifications in Python 2.x on Linux (from mbrubeck:notify-linux2); r=frewsxcv
In Python 2.x on Linux, `sys.platform == 'linux2'`. https://docs.python.org/2/library/sys.html#sys.platform r? @frewsxcv Source-Repo: https://github.com/servo/servo Source-Revision: 076f44a02d033bb5d0bb2e18065acdf18d98cce5
This commit is contained in:
Родитель
da504ba30c
Коммит
3bd02a6984
|
@ -98,6 +98,7 @@ def notify(title, text):
|
|||
platforms, this function acts as a no-op."""
|
||||
platforms = {
|
||||
"linux": notify_linux,
|
||||
"linux2": notify_linux,
|
||||
"win": notify_win,
|
||||
"darwin": notify_darwin
|
||||
}
|
||||
|
|
Загрузка…
Ссылка в новой задаче