- Timestamp:
- Jun 20, 2018, 1:45:11 PM (3 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
lliurex-store/trunk/fuentes/python3-lliurex-store.install/usr/share/lliurexstore/storeManager.py
r7474 r7490 36 36 self.threads={} #Dict with the functions that must execute each action 37 37 self.static={} #Dict with the functions that must execute each action 38 self.threads_progress={} #"" "" "" the progress for each launched thread38 self.threads_progress={} #"" "" "" the progress for each launched thread 39 39 self.running_threads={} #"" "" "" the running threads 40 40 self.plugins_registered={} #Dict with the relation between plugins and actions 41 self.register_action_progress={} #Dict with the progress for each function/parent_action pair41 self.register_action_progress={} #Dict with the progress for each function/parent_action pair 42 42 self.action_progress={} #Progress of global actions based on average progress of individual processes 43 43 self.extra_actions={} #Dict with the actions managed by plugins and no defined on the main class as related_actions … … 143 143 self.threads['pkginfo']="threading.Thread(target=self._get_Extended_App_Info,args=args,kwargs=kwargs)" 144 144 self.threads['search']='threading.Thread(target=self._search_Store,args=args,kwargs=kwargs)' 145 #self.threads['list']='threading.Thread(target=self._search_Store,args=args,kwargs=kwargs)'145 self.threads['list']='threading.Thread(target=self._search_Store,args=args,kwargs=kwargs)' 146 146 # self.threads['list']='threading.Thread(target=self._get_editors_pick,args=args,kwargs=kwargs)' 147 147 self.threads['info']='threading.Thread(target=self._search_Store,args=args,kwargs=kwargs)' … … 483 483 include_sections=[] 484 484 max_results=10 485 #WTF?486 485 kargs=kwargs['kwargs'].copy() 487 486 if 'exclude_sections' in kargs.keys():
Note: See TracChangeset
for help on using the changeset viewer.