Die Suche ergab 1 Treffer

von SK0RPI0NHD
Mittwoch 12. Juni 2019, 11:15
Forum: Netzwerkprogrammierung
Thema: IndexError: list index out of range for Entries
Antworten: 2
Zugriffe: 3250

IndexError: list index out of range for Entries

My Code:

import wx
import wx.xrc
from ldap3 import Server, Connection, SUBTREE, ALL_ATTRIBUTES, AUTO_BIND_NO_TLS
import getpass

class MyApp(wx.App):

def OnInit(self):
self.frame = MyFrame(None)
self.SetTopWindow(self.frame)
self.frame.Show()
return True


class MyFrame (wx.Frame):

def ...