Skip to content

Commit 5d9dc4e

Browse files
fix : minor bug fixed in check_update()
1 parent e53d11f commit 5d9dc4e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

orangetool/orangetool_system.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ def check_update(DEBUG=False):
2323
'''
2424
try:
2525
new_version=requests.get(UPDATE_URL).text
26-
if float(new_version)>VERSION:
26+
if float(new_version)>float(VERSION):
2727
print("New Version ("+new_version+") Of Orangetool Is Available")
2828
return True
2929
else:

0 commit comments

Comments
 (0)