From 22e2a57d80fa26419da0337b78d0978b4e5374de Mon Sep 17 00:00:00 2001 From: Robert McGibbon Date: Mon, 21 Mar 2016 09:43:03 -0400 Subject: [PATCH] Fix compatibility with Python 2 in installation --- basesetup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/basesetup.py b/basesetup.py index 11eb093..b1e028f 100644 --- a/basesetup.py +++ b/basesetup.py @@ -80,7 +80,7 @@ def run_nbextension_install(self, develop): def run(self): print("Installing Python module...") - super(InstallCommand, self).run() + install.run(self) print("Installing nbextension...") self.run_nbextension_install(False)