We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e53d11f commit 5d9dc4eCopy full SHA for 5d9dc4e
orangetool/orangetool_system.py
@@ -23,7 +23,7 @@ def check_update(DEBUG=False):
23
'''
24
try:
25
new_version=requests.get(UPDATE_URL).text
26
- if float(new_version)>VERSION:
+ if float(new_version)>float(VERSION):
27
print("New Version ("+new_version+") Of Orangetool Is Available")
28
return True
29
else:
0 commit comments