Reverted last change to the QRegularExpressionWizard because PyQt4 and PyQt5 cannot be imported at the same time.

Tue, 25 Jun 2013 19:03:30 +0200

author
Detlev Offenbach <detlev@die-offenbachs.de>
date
Tue, 25 Jun 2013 19:03:30 +0200
changeset 2743
d092c33ecbcd
parent 2742
bf0560b035bf
child 2744
76abd23845d1

Reverted last change to the QRegularExpressionWizard because PyQt4 and PyQt5 cannot be imported at the same time.

Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py file | annotate | diff | comparison | revisions
--- a/Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py	Tue Jun 25 18:58:54 2013 +0200
+++ b/Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py	Tue Jun 25 19:03:30 2013 +0200
@@ -12,7 +12,7 @@
 
 from PyQt4.QtCore import QFileInfo, pyqtSlot, qVersion
 try:
-    from PyQt5.QtCore import QRegularExpression
+    from PyQt4.QtCore import QRegularExpression
     AVAILABLE = True
 except ImportError:
     AVAILABLE = False

eric ide

mercurial