Exemplo n.º 1
0
 def run(self, para=None):
     if para['name'] == 'All':
         for i in TextLogManager.get_titles():
             TextLogManager.close(i)
     else:
         TextLogManager.close(para['name'])
Exemplo n.º 2
0
 def load(self):
     TextKiller.para = {'name': 'All'}
     titles = ['All'] + TextLogManager.get_titles()
     TextKiller.view = [(list, titles, str, 'Name', 'name', 'selected')]
     return True