comparison smartopen/smartopen.py @ 9:4dd12cf64c0e

remove debugging code and state what should be done
author Jeff Hammel <jhammel@mozilla.com>
date Tue, 04 May 2010 08:49:39 -0700
parents 01015b36290a
children a62fbff067f8
comparison
equal deleted inserted replaced
8:44950f376e98 9:4dd12cf64c0e
23 23
24 for i in iter_entry_points('smartopen.locations'): 24 for i in iter_entry_points('smartopen.locations'):
25 try: 25 try:
26 handler = i.load() 26 handler = i.load()
27 except: 27 except:
28 pass 28 continue # TODO: warn/debug with --verbose flag
29 _handlers[i.name] = handler 29 _handlers[i.name] = handler
30 if not names: 30 if not names:
31 _names.append(i.name) 31 _names.append(i.name)
32 32
33 if not names: 33 if not names: