1
0
mirror of https://github.com/gryf/wicd.git synced 2026-01-04 04:44:12 +01:00

More Python 3 fixes needed to also install the packages

Daemon still does not start. It fails as follows:

Traceback (most recent call last):
  File "/usr/share/wicd/daemon/wicd-daemon.py", line 62, in <module>
    from wicd.logfile import ManagedStdio
  File "/usr/lib/python3/dist-packages/wicd/logfile.py", line 32, in <module>
    class LogFile(file):
NameError: name 'file' is not defined
This commit is contained in:
Axel Beckert
2019-09-11 01:16:58 +02:00
parent c4ba09c196
commit 187f85f6a0
8 changed files with 11 additions and 9 deletions

View File

@@ -26,7 +26,7 @@ Module containing the code for the main wicd GUI.
import os
import sys
import time
import gobject
from gi.repository import GObject as gobject
import gtk
from itertools import chain
from dbus import DBusException

View File

@@ -25,7 +25,7 @@ handles recieving/sendings the settings from/to the daemon.
#
import gtk
import gobject
from gi.repository import GObject as gobject
import os
from wicd import misc

View File

@@ -39,7 +39,7 @@ class TrayIcon() -- Parent class of TrayIconGUI and IconConnectionInfo.
import sys
import gtk
import gobject
from gi.repository import GObject as gobject
import getopt
import os
import pango