44 |
def __init_listbox__(self,parent): |
def __init_listbox__(self,parent): |
45 |
|
|
46 |
try: |
try: |
47 |
for i in self.modulesCtl.modules.keys(): |
for i in self.modulesCtl.modules: |
48 |
self.checkListBoxModules.Append(i) |
self.checkListBoxModules.Append(i) |
49 |
for b in self.selections: |
if self.selections: |
50 |
self.checkListBoxModules.Check(self.modulesCtl.modules.keys().index(b)) |
for b in self.selections: |
51 |
|
self.checkListBoxModules.Check(self.modulesCtl.modules.keys().index(b)) |
52 |
except AttributeError: |
except AttributeError: |
53 |
print "No Modules found" |
print "No Modules found" |
54 |
|
|