From ffeeabc7c9ee4c82582257c2be7a3c6032d80ff9 Mon Sep 17 00:00:00 2001 From: Martin Konecny Date: Sun, 9 Oct 2011 02:29:16 -0400 Subject: [PATCH] -need to install natty liquidsoap binary for oneiric --- python_apps/pypo/install/pypo-install.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/python_apps/pypo/install/pypo-install.py b/python_apps/pypo/install/pypo-install.py index 240525334..4b7219534 100644 --- a/python_apps/pypo/install/pypo-install.py +++ b/python_apps/pypo/install/pypo-install.py @@ -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