mirror of
https://github.com/borgbase/vorta
synced 2024-12-22 15:57:34 +00:00
Fix typo when selecting notificaton platform. Fixes #11
This commit is contained in:
parent
11d02005f6
commit
810a8026fa
1 changed files with 3 additions and 1 deletions
|
@ -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
|
||||
|
||||
|
||||
|
|
Loading…
Reference in a new issue