bilelmoussaoui / nautilus-git

Nautilus/Nemo extension to add important information about the current git directory
GNU General Public License v3.0
149 stars 9 forks source link

ModuleNotFoundError: No module named 'urlparse' #52

Open goncer opened 2 years ago

goncer commented 2 years ago

I found that this extension does not work correctly in my local, It seems that either I dont have the right python version, or a missing module? But I did not find any requirements file :S Any clue?

➜  mangata-e2e git:(feature/benchmarking-A) ✗ nautilus ./       
Traceback (most recent call last):
  File "/usr/share/nautilus-python/extensions/nautilus-git.py", line 39, in <module>
    from utils import is_git
  File "/usr/share/nautilus-git/src/utils.py", line 22, in <module>
    from urlparse import urlsplit
ModuleNotFoundError: No module named 'urlparse'
less /usr/share/nautilus-git/src/utils.py

I tried with both versions of python

mangata-e2e git:(feature/benchmarking-A) ✗ python --version
Python 3.10.3

and

➜  mangata-node git:(feature/use-mangata-registrator) python --version
Python 2.7.18

Thanks!