Commit 74378247f100cb0c6c05a2c783c4a29730899249

Authored by ruppert
1 parent 5dfc22d6

FIX: updater fix

Showing 1 changed file with 1 additions and 1 deletions   Show diff stats
invesalius/utils.py
... ... @@ -401,7 +401,7 @@ def UpdateCheck():
401 401 response = urllib2.urlopen(req)
402 402 last = response.readline().rstrip()
403 403 url = response.readline().rstrip()
404   - if (last!=const.INVESALIUS_VERSION+"1"):
  404 + if (last!=const.INVESALIUS_VERSION):
405 405 print " ...New update found!!! -> version:", last #, ", url=",url
406 406 from time import sleep
407 407 sleep(2)
... ...