summaryrefslogtreecommitdiff
path: root/gr-utils/plot_tools/gr_plot_qt
diff options
context:
space:
mode:
Diffstat (limited to 'gr-utils/plot_tools/gr_plot_qt')
-rwxr-xr-xgr-utils/plot_tools/gr_plot_qt6
1 files changed, 3 insertions, 3 deletions
diff --git a/gr-utils/plot_tools/gr_plot_qt b/gr-utils/plot_tools/gr_plot_qt
index 5b9f9cf90a..aada9e0bba 100755
--- a/gr-utils/plot_tools/gr_plot_qt
+++ b/gr-utils/plot_tools/gr_plot_qt
@@ -9,13 +9,13 @@ except ImportError:
raise SystemExit(1)
try:
- from PyQt4 import Qt, QtCore, QtGui
+ from PyQt5 import Qt, QtCore, QtGui
except ImportError:
- print("Please install PyQt4 to run this script (http://www.riverbankcomputing.co.uk/software/pyqt/download)")
+ print("Please install PyQt5 to run this script (http://www.riverbankcomputing.co.uk/software/pyqt/download)")
raise SystemExit(1)
try:
- import PyQt4.Qwt5 as Qwt
+ import PyQt5.Qwt as Qwt
except ImportError:
print("Please install PyQwt5 to run this script (http://pyqwt.sourceforge.net/)")
raise SystemExit(1)