Skip to content

Commit

Permalink
Version check bug fix
Browse files Browse the repository at this point in the history
  • Loading branch information
tsikes committed Nov 8, 2021
1 parent 703d225 commit 9aee564
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/help_menu.py
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,8 @@ def newVersionExists(self, current_version):
for (v, git_v) in zip(current_version, github_version):
if int(git_v) > int(v):
return True
elif int(git_v) < int(v):
return False

return False

Expand Down

0 comments on commit 9aee564

Please sign in to comment.