checkdeps OS version handler fix
- it didn't work if OS version didn't contain a quote
This commit is contained in:
parent
b025624f2a
commit
8b06fdf648
|
@ -111,7 +111,7 @@ def detectOSRelease():
|
|||
detectOS.result = None
|
||||
if line.startswith("VERSION_ID="):
|
||||
try:
|
||||
version = float(line.split("\"")[1])
|
||||
version = float(line.split("=")[1].replace("\"", ""))
|
||||
except ValueError:
|
||||
pass
|
||||
if detectOS.result == "Ubuntu" and version < 14:
|
||||
|
|
Loading…
Reference in New Issue
Block a user