From 7768d4753a209dc723793235daddbf979d1e6e79 Mon Sep 17 00:00:00 2001 From: Zachary Pincus Date: Fri, 25 Sep 2015 11:24:50 -0500 Subject: [PATCH] s/pyqtv2/pyqt4v2/ --- IPython/external/qt_for_kernel.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/IPython/external/qt_for_kernel.py b/IPython/external/qt_for_kernel.py index 9c3e846c96b..33cf6225d81 100644 --- a/IPython/external/qt_for_kernel.py +++ b/IPython/external/qt_for_kernel.py @@ -52,7 +52,7 @@ def matplotlib_options(mpl): return [QT_API_PYSIDE] elif mpqt.lower() == 'pyqt4': return [QT_API_PYQT_DEFAULT] - elif mpqt.lower() == 'pyqtv2': + elif mpqt.lower() == 'pyqt4v2': return [QT_API_PYQT] raise ImportError("unhandled value for backend.qt4 from matplotlib: %r" % mpqt)