From 0b3753ab96f29501efc5b261426f012bc52f52b9 Mon Sep 17 00:00:00 2001 From: Min RK Date: Wed, 22 Apr 2015 13:41:58 -0700 Subject: [PATCH] fix copy/paste typo checking for phantomjs --- jupyter_notebook/jstest.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/jupyter_notebook/jstest.py b/jupyter_notebook/jstest.py index 27fc59d85..adcfb40d6 100644 --- a/jupyter_notebook/jstest.py +++ b/jupyter_notebook/jstest.py @@ -55,7 +55,7 @@ NOTEBOOK_SHUTDOWN_TIMEOUT = 10 have = {} have['casperjs'] = bool(which('casperjs')) -have['phantomjs'] = bool(which('slimerjs')) +have['phantomjs'] = bool(which('phantomjs')) have['slimerjs'] = bool(which('slimerjs')) class StreamCapturer(Thread):