From 4ffbbfa164cd9c45a93a58ebc201115fce76d3f9 Mon Sep 17 00:00:00 2001 From: Daniel James Date: Fri, 31 Aug 2012 14:36:05 +0100 Subject: [PATCH] Update the text sent to the console, since binary is no longer installed here --- python_apps/pypo/install/pypo-initialize.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/python_apps/pypo/install/pypo-initialize.py b/python_apps/pypo/install/pypo-initialize.py index ebf49a65c..af12ff02e 100644 --- a/python_apps/pypo/install/pypo-initialize.py +++ b/python_apps/pypo/install/pypo-initialize.py @@ -81,7 +81,7 @@ try: (codename, fullname) = get_os_codename() print " Found %s (%s) on %s architecture" % (fullname, codename, arch) - print " * Installing Liquidsoap binary" + print " * Creating symlink to Liquidsoap binary" p = Popen("which liquidsoap", shell=True, stdout=PIPE) liq_path = p.communicate()[0].strip()