Skip to content

Commit

Permalink
Merge pull request #75 from davea/loadable_fix
Browse files Browse the repository at this point in the history
Fix a crash when displaying quick launch screen
  • Loading branch information
thinkl33t authored Aug 8, 2016
2 parents 0f6d614 + aff2385 commit 33f50ba
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/app.py
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ def main_path(self):

@property
def loadable(self):
return filesystem.is_file(self.main_path) and os.size(self.main_path) > 0
return filesystem.is_file(self.main_path) and os.stat(self.main_path)[6] > 0

@property
def description(self):
Expand Down

0 comments on commit 33f50ba

Please # to comment.