Plugins/WizardPlugins/PyRegExpWizard/PyRegExpWizardDialog.py

changeset 96
9624a110667d
parent 45
9a18f4dbb493
child 425
ca5e65413fc5
child 792
a13346916170
--- a/Plugins/WizardPlugins/PyRegExpWizard/PyRegExpWizardDialog.py	Sun Jan 31 16:15:16 2010 +0000
+++ b/Plugins/WizardPlugins/PyRegExpWizard/PyRegExpWizardDialog.py	Sun Jan 31 17:11:22 2010 +0000
@@ -7,7 +7,6 @@
 Module implementing the Python re wizard dialog.
 """
 
-import sys
 import os
 import re
 
@@ -377,7 +376,7 @@
         if regex:
             try:
                 if self.py2Button.isChecked():
-                    regobj = re.compile(regex,
+                    re.compile(regex,
                         (not self.caseSensitiveCheckBox.isChecked() and re.IGNORECASE or 0) | \
                         self.multilineCheckBox.isChecked() and re.MULTILINE or 0 | \
                         self.dotallCheckBox.isChecked() and re.DOTALL or 0 | \
@@ -385,7 +384,7 @@
                         self.localeCheckBox.isChecked() and re.LOCALE or 0 | \
                         self.unicodeCheckBox.isChecked() and re.UNICODE or 0)
                 else:
-                    regobj = re.compile(regex,
+                    re.compile(regex,
                         (not self.caseSensitiveCheckBox.isChecked() and re.IGNORECASE or 0) | \
                         self.multilineCheckBox.isChecked() and re.MULTILINE or 0 | \
                         self.dotallCheckBox.isChecked() and re.DOTALL or 0 | \

eric ide

mercurial