-need to install natty liquidsoap binary for oneiric

This commit is contained in:
Martin Konecny 2011-10-09 02:29:16 -04:00
parent 3e77ff98a4
commit ffeeabc7c9
1 changed files with 1 additions and 1 deletions

View File

@ -46,7 +46,7 @@ def is_natty():
split = line.split("=")
split[0] = split[0].strip(" \r\n")
split[1] = split[1].strip(" \r\n")
if split[0] == "DISTRIB_CODENAME" and split[1] == "natty":
if split[0] == "DISTRIB_CODENAME" and (split[1] == "natty" or split[1] == "oneiric"):
return True
return False