Merge pull request #55 from MurdoMaclachlan/master

Fix for #54, crash when starting with autostart disabled.
This commit is contained in:
trigg 2020-10-01 00:19:38 +01:00 committed by GitHub
commit b92610a8f7
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -50,4 +50,4 @@ class Autostart:
pass
def is_auto(self):
return True if self.auto else None
return True if self.auto else False