Uh oh!
There was an error while loading.Please reload this page.
- Notifications
You must be signed in to change notification settings - Fork252
Closed
Labels
Milestone
Description
Fedora bug report:https://bugzilla.redhat.com/show_bug.cgi?id=1782782
Tried on Fedora 33 with bothbpython installed from RPM and in a venv (on Python 3.9.0). The same operations work fine using/usr/bin/python3 and IPython.
~ ❯ bpythonbpython version unknown on top of Python 3.9.0 /usr/bin/python3>>> from fedora import clientTraceback (most recent call last): File "<input>", line 1, in <module> from fedora import client File "/usr/lib/python3.9/site-packages/fedora/client/__init__.py", line 157, in <module> from fedora.client.proxyclient import ProxyClient File "/usr/lib/python3.9/site-packages/fedora/client/proxyclient.py", line 39, in <module> from six.moves.urllib.parse import quote, urljoin, urlparseModuleNotFoundError: No module named 'six.moves.urllib'>>> import six>>> from six.moves import urllibTraceback (most recent call last): File "<input>", line 1, in <module> from six.moves import urllib File "/usr/lib/python3.9/site-packages/six.py", line 92, in __get__ result = self._resolve() File "/usr/lib/python3.9/site-packages/six.py", line 115, in _resolve return _import_module(self.mod) File "/usr/lib/python3.9/site-packages/six.py", line 82, in _import_module __import__(name)ModuleNotFoundError: No module named 'six.moves.urllib'>>> from bodhi import clientTraceback (most recent call last): File "<input>", line 1, in <module> from bodhi import client File "/usr/lib/python3.9/site-packages/bodhi/client/__init__.py", line 30, in <module> from fedora.client import AuthError, openidproxyclient File "/usr/lib/python3.9/site-packages/fedora/client/__init__.py", line 157, in <module> from fedora.client.proxyclient import ProxyClient File "/usr/lib/python3.9/site-packages/fedora/client/proxyclient.py", line 39, in <module> from six.moves.urllib.parse import quote, urljoin, urlparseModuleNotFoundError: No module named 'six.moves.urllib'>>>