Saturday, May 4, 2024
 Popular · Latest · Hot · Upcoming
0
rated 0 times [  0] [ 0]  / answers: 1 / hits: 441  / 2 Years ago, wed, december 29, 2021, 8:37:13

The only information I have is the fact that it does not launch. I click on the icon to launch the app (the PP VPN manager) and it sends me back to the desktop. Nothing else happens.


I have tried re-installing the application (sudo apt purge prefect-privacy-vpn) and re-installing it to no avail. I suspect the repo is not there, but I just don't know enough to troubleshoot this.


Any advice would be much appreciated.


If I run perfect-privacy-vpn from terminal, I receive this error:


Exception in thread Thread-1 (run):
Traceback (most recent call last):
File "/usr/lib/python3.10/threading.py", line 1009, in _bootstrap_inner
self.run()
File "/usr/lib/python3.10/threading.py", line 946, in run
self._target(*self._args, **self._kwargs)
File "/opt/perfect_privacy/perfect-privacy-vpn/perfect_privacy_vpn/__init__.py", line 167, in run
window = PerfectPrivacyVpnWindow.PerfectPrivacyVpnWindow()
File "/opt/perfect_privacy/perfect-privacy-vpn/perfect_privacy_vpn_lib/Window.py", line 46, in __new__
builder = get_builder('PerfectPrivacyVpnWindow')
File "/opt/perfect_privacy/perfect-privacy-vpn/perfect_privacy_vpn_lib/helpers.py", line 41, in get_builder
builder.add_from_file(ui_filename)
File "/opt/perfect_privacy/perfect-privacy-vpn/perfect_privacy_vpn_lib/Builder.py", line 88, in add_from_file
ele_widgets = tree.getiterator("object")
AttributeError: 'ElementTree' object has no attribute 'getiterator'

Thanks!


More From » vpn

 Answers
5

After reading and trying out a few suggestions, here is the solution: To fix this issue, edit the python file /opt/perfect_privacy/perfect-privacy-vpn/perfect_privacy_vpn_lib/Builder.py


Edit ele_widgets = tree.getiterator("object")
to ele_widgets = tree.iter("object")


Edit ele_signals = tree.getiterator("signal")
to ele_signals = tree.iter("signal")


It worked for me! :)


[#306] Wednesday, December 29, 2021, 2 Years  [reply] [flag answer]
Only authorized users can answer the question. Please sign in first, or register a free account.
diffeah

Total Points: 78
Total Questions: 130
Total Answers: 98

Location: Peru
Member since Fri, Oct 14, 2022
2 Years ago
;