server/sources/datafeed.py
changeset 10551 1182f5f16a3d
parent 10532 2cc74c688eb9
child 10581 7846d26ff91d
equal deleted inserted replaced
10550:d4bd28d5fca8 10551:1182f5f16a3d
   508 
   508 
   509     def process_item(self, *args, **kwargs):
   509     def process_item(self, *args, **kwargs):
   510         raise NotImplementedError
   510         raise NotImplementedError
   511 
   511 
   512     def is_deleted(self, extid, etype, eid):
   512     def is_deleted(self, extid, etype, eid):
   513         if exitd.startswith('file://'):
   513         if extid.startswith('file://'):
   514             return exists(exitd[7:])
   514             return exists(extid[7:])
   515 
   515 
   516         url = self.normalize_url(extid)
   516         url = self.normalize_url(extid)
   517         # first, try to use cwclientlib if it's available and if the
   517         # first, try to use cwclientlib if it's available and if the
   518         # url matches a configuration entry in ~/.config/cwclientlibrc
   518         # url matches a configuration entry in ~/.config/cwclientlibrc
   519         try:
   519         try: