Bug 1181827
| Summary: | Import wizard don't work | ||||||
|---|---|---|---|---|---|---|---|
| Product: | [Fedora] Fedora | Reporter: | nucleo <alekcejk> | ||||
| Component: | python3-iep | Assignee: | Scott K Logan <logans> | ||||
| Status: | CLOSED ERRATA | QA Contact: | Fedora Extras Quality Assurance <extras-qa> | ||||
| Severity: | medium | Docs Contact: | |||||
| Priority: | medium | ||||||
| Version: | 21 | CC: | lnie, logans | ||||
| Target Milestone: | --- | ||||||
| Target Release: | --- | ||||||
| Hardware: | All | ||||||
| OS: | Linux | ||||||
| Whiteboard: | |||||||
| Fixed In Version: | python3-iep-3.5-1.fc20 | Doc Type: | Bug Fix | ||||
| Doc Text: | Story Points: | --- | |||||
| Clone Of: | Environment: | ||||||
| Last Closed: | 2015-01-27 02:55:04 UTC | Type: | Bug | ||||
| Regression: | --- | Mount Type: | --- | ||||
| Documentation: | --- | CRM: | |||||
| Verified Versions: | Category: | --- | |||||
| oVirt Team: | --- | RHEL 7.3 requirements from Atomic Host: | |||||
| Cloudforms Team: | --- | Target Upstream Version: | |||||
| Embargoed: | |||||||
| Attachments: |
|
||||||
Thanks, I'll try to work with upstream to devise a permanent fix. --scott Created attachment 979914 [details]
Fix import exception and browser initial value
I dug into this, and while I found problems related to this, I can't reproduce your inner exception. In browser.py, the "return self._importWizard" is in a try/except AttributeError block, so that exception isn't possible in the code in python3-iep-3.4-4.fc21. Any idea where that came from?
However, I can confirm the import exception. I'm fairly sure that import is unnecessary, and is overridden by the import a few lines later.
Please re-install python3-iep fresh and test the patch if you are willing.
After applying patch import wizard with preview works, only this message shown: Warning, invalid style names given: Editor.Long line indicator,Editor.Highlight current line,Editor.Line numbers (I selected for importing /var/Xorg.0.log) But maybe this warning is not a problem. Upstream has merged a fix [1] for this. I'll apply the patches to the RPM and release the fix, as I don't think upstream is going to release anytime soon. --scott [1] https://bitbucket.org/iep-project/iep/pull-request/16/fix-the-import-wizard-on-pyqt4/diff python3-iep-3.5-1.fc20 has been submitted as an update for Fedora 20. https://admin.fedoraproject.org/updates/python3-iep-3.5-1.fc20 python3-iep-3.5-1.fc21 has been submitted as an update for Fedora 21. https://admin.fedoraproject.org/updates/python3-iep-3.5-1.fc21 Package python3-iep-3.5-1.fc20: * should fix your issue, * was pushed to the Fedora 20 testing repository, * should be available at your local mirror within two days. Update it with: # su -c 'yum update --enablerepo=updates-testing python3-iep-3.5-1.fc20' as soon as you are able to. Please go to the following url: https://admin.fedoraproject.org/updates/FEDORA-2015-0884/python3-iep-3.5-1.fc20 then log in and leave karma (feedback). python3-iep-3.5-1.fc21 works python3-iep-3.5-1.fc21 has been pushed to the Fedora 21 stable repository. If problems still persist, please make note of it in this bug report. python3-iep-3.5-1.fc20 has been pushed to the Fedora 20 stable repository. If problems still persist, please make note of it in this bug report. |
Description of problem: Import from File Browser wizard don't work. Version-Release number of selected component (if applicable): python3-iep-3.4-4.fc21 Steps to Reproduce: 1. Select file in file browser 2. Rightclick and select "Import data..." 3. Actual results: Traceback (most recent call last): File "/usr/lib/python3.4/site-packages/iep/tools/iepFileBrowser/browser.py", line 77, in getImportWizard return self._importWizard AttributeError: 'Browser' object has no attribute '_importWizard' During handling of the above exception, another exception occurred: Traceback (most recent call last): File "/usr/lib/python3.4/site-packages/iep/iepcore/menu.py", line 296, in <lambda> a.triggered.connect(lambda b=None: callback()) File "/usr/lib/python3.4/site-packages/iep/tools/iepFileBrowser/tree.py", line 867, in _importData wizard = browser.getImportWizard() File "/usr/lib/python3.4/site-packages/iep/tools/iepFileBrowser/browser.py", line 80, in getImportWizard from .importwizard import ImportWizard File "/usr/lib/python3.4/site-packages/iep/tools/iepFileBrowser/importwizard.py", line 24, in <module> from PySide import QtGui, QtCore ImportError: No module named 'PySide' Additional info: Changing PySide to PyQt4 in /usr/lib/python3.4/site-packages/iep/tools/iepFileBrowser/importwizard.py partially fixes problem but after selecting file it is not appeared in first preview screen (as in iep with PySide for windows).