##// END OF EJS Templates
Improved error message for Qt API switcher.
epatters -
Show More
@@ -26,4 +26,5 b' elif QT_API == QT_API_PYSIDE:'
26 from PySide import QtCore, QtGui, QtSvg
26 from PySide import QtCore, QtGui, QtSvg
27
27
28 else:
28 else:
29 raise RuntimeError('Invalid Qt API "%s"' % QT_API)
29 raise RuntimeError('Invalid Qt API %r, valid values are: %r or %r' %
30 (QT_API, QT_API_PYQT, QT_API_PYSIDE))
General Comments 0
You need to be logged in to leave comments. Login now