예제 #1
0
 def update_dynamic_plugins(self):
     all_candidates, errors = update_plugin_places(
         [self.plugin_dir + os.sep + d for d in self.get(REPOS, {}).keys()])
     self.all_candidates = all_candidates
     return errors
예제 #2
0
파일: errBot.py 프로젝트: CiaranG/err
 def update_dynamic_plugins(self):
     all_candidates, errors = update_plugin_places([PLUGIN_DIR + os.sep + d for d in self.get("repos", {}).keys()])
     self.all_candidates = all_candidates
     return errors
예제 #3
0
파일: errBot.py 프로젝트: armonge/err
 def update_dynamic_plugins(self):
     all_candidates, errors = update_plugin_places(
         [self.plugin_dir + os.sep + d for d in self.get(REPOS, {}).keys()]
     )
     self.all_candidates = all_candidates
     return errors
예제 #4
0
파일: errBot.py 프로젝트: glenbot/err
 def update_dynamic_plugins(self):
     return update_plugin_places([PLUGIN_DIR + os.sep + d for d in self.internal_shelf.get('repos', {}).keys()])
예제 #5
0
파일: errBot.py 프로젝트: achew22/err
 def update_dynamic_plugins(self):
     all_candidates, errors = update_plugin_places(
         [PLUGIN_DIR + os.sep + d for d in self.get('repos', {}).keys()])
     self.all_candidates = all_candidates
     return errors