1
0
Fork 0
mirror of https://github.com/borgbase/vorta synced 2024-12-23 00:07:58 +00:00

Fix typo when selecting notificaton platform. Fixes #11

This commit is contained in:
Manu 2018-11-09 22:26:22 +08:00
parent 11d02005f6
commit 810a8026fa

View file

@ -12,7 +12,9 @@ class VortaNotifications:
def pick(cls): def pick(cls):
if sys.platform == 'darwin': if sys.platform == 'darwin':
return DarwinNotifications return DarwinNotifications
elif sys.platform == 'linux2': elif sys.platform == 'linux':
return LinuxNotifications
else: # Save to sqlite as fallback?
return LinuxNotifications return LinuxNotifications