117 """ |
117 """ |
118 from WizardPlugins.EricPluginWizard.PluginWizardDialog import ( |
118 from WizardPlugins.EricPluginWizard.PluginWizardDialog import ( |
119 PluginWizardDialog |
119 PluginWizardDialog |
120 ) |
120 ) |
121 dlg = PluginWizardDialog(None) |
121 dlg = PluginWizardDialog(None) |
122 if dlg.exec() == QDialog.Accepted: |
122 if dlg.exec() == QDialog.DialogCode.Accepted: |
123 return (dlg.getCode(), dlg.packageName(), True) |
123 return (dlg.getCode(), dlg.packageName(), True) |
124 else: |
124 else: |
125 return (None, "", False) |
125 return (None, "", False) |
126 |
126 |
127 def __handle(self): |
127 def __handle(self): |