Skip to content

Commit

Permalink
fix check_version bug
Browse files Browse the repository at this point in the history
  • Loading branch information
PierreRochard committed Feb 4, 2019
1 parent c963a29 commit 881c490
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions node_launcher/gui/main_widget.py
Original file line number Diff line number Diff line change
Expand Up @@ -74,6 +74,8 @@ def __init__(self):

def check_version(self):
latest_version = LauncherSoftware().get_latest_release_version()
if latest_version is None:
return
latest_major, latest_minor, latest_bugfix = latest_version.split('.')
major, minor, bugfix = NODE_LAUNCHER_RELEASE.split('.')

Expand Down

0 comments on commit 881c490

Please sign in to comment.