6 lines
107 B
Python
6 lines
107 B
Python
import version
|
|
if version.local() < version.remote():
|
|
print("needs update")
|
|
else:
|
|
print("is fine")
|