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:
Matt Brubeck 2015-09-28 12:47:29 -06:00
Родитель da504ba30c
Коммит 3bd02a6984
1 изменённых файлов: 1 добавлений и 0 удалений

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

@ -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
}