Exemple #1
0
 def load_store_plugins(self):
     self.istores = OrderedDict()
     for store in available_store_plugins():
         if self.opts.ignore_plugins and store.plugin_path is not None:
             continue
         try:
             st = self.init_istore(store)
             self.add_istore(st)
         except:
             # Ignore errors in loading user supplied plugins
             import traceback
             traceback.print_exc()
             if store.plugin_path is None:
                 raise
             continue
Exemple #2
0
 def load_store_plugins(self):
     self.istores = OrderedDict()
     for store in available_store_plugins():
         if self.opts.ignore_plugins and store.plugin_path is not None:
             continue
         try:
             st = self.init_istore(store)
             self.add_istore(st)
         except:
             # Ignore errors in loading user supplied plugins
             import traceback
             traceback.print_exc()
             if store.plugin_path is None:
                 raise
             continue
Exemple #3
0
 def load_store_plugins(self):
     from calibre.gui2.store.loader import Stores
     self.istores = Stores()
     for store in available_store_plugins():
         if self.opts.ignore_plugins and store.plugin_path is not None:
             continue
         try:
             st = self.init_istore(store)
             self.add_istore(st)
         except:
             # Ignore errors in loading user supplied plugins
             import traceback
             traceback.print_exc()
             if store.plugin_path is None:
                 raise
             continue
     self.istores.builtins_loaded()
Exemple #4
0
 def load_store_plugins(self):
     from calibre.gui2.store.loader import Stores
     self.istores = Stores()
     for store in available_store_plugins():
         if self.opts.ignore_plugins and store.plugin_path is not None:
             continue
         try:
             st = self.init_istore(store)
             self.add_istore(st)
         except:
             # Ignore errors in loading user supplied plugins
             import traceback
             traceback.print_exc()
             if store.plugin_path is None:
                 raise
             continue
     self.istores.builtins_loaded()