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
1 changed files with 3 additions and 1 deletions

View File

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