Commit 79d27502dfb7bddcc845b62b4868c803f04b7aab
1 parent
ac508615
Exists in
master
and in
67 other branches
ENH: Commented UpdateChecker
Showing
1 changed file
with
2 additions
and
2 deletions
Show diff stats
invesalius/utils.py
... | ... | @@ -379,12 +379,12 @@ def UpdateChecker(): |
379 | 379 | last = response.readline().rstrip() |
380 | 380 | url = response.readline().rstrip() |
381 | 381 | print last, url |
382 | - if (last!="3.0 beta 3"): | |
382 | + if (last!="3.0 beta 32"): | |
383 | 383 | print "New update found!!! -> version:", last, ", url=",url |
384 | 384 | from time import sleep |
385 | 385 | sleep(5) |
386 | 386 | from gui.dialogs import UpdateDialog |
387 | - UpdateDialog(last,url) | |
387 | + #UpdateDialog(last,url) | |
388 | 388 | #except: |
389 | 389 | # return |
390 | 390 | ... | ... |