From 59f767e1afe9f83ad076cfc78fcd27fc757c00ce Mon Sep 17 00:00:00 2001 From: Alan Saul Date: Fri, 8 Feb 2013 18:39:56 +0000 Subject: [PATCH] More debugging --- doc/conf.py | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/doc/conf.py b/doc/conf.py index fc86ab11..0167cb90 100644 --- a/doc/conf.py +++ b/doc/conf.py @@ -134,7 +134,11 @@ if on_rtd: proc = subprocess.Popen("sphinx-apidoc -f -o . ../GPy", stdout=subprocess.PIPE, shell=True) (out, err) = proc.communicate() print "program output:", out - proc = subprocess.Popen("locate matplotlib", stdout=subprocess.PIPE, shell=True) + proc = subprocess.Popen("whereis numpy", stdout=subprocess.PIPE, shell=True) + (out, err) = proc.communicate() + print "program output:", out + print "MATPLOTLIB BABY" + proc = subprocess.Popen("whereis matplotlib", stdout=subprocess.PIPE, shell=True) (out, err) = proc.communicate() print "program output:", out #os.system("cd ..")