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:
parent
11d02005f6
commit
810a8026fa
1 changed files with 3 additions and 1 deletions
|
@ -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
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue