> > Index: hdrlist.py > > + try: > > + extra_args = { "retry": 5 } > > + file = grabber.urlopen (filename, **extra_args) > > Why not > file = grabber.urlopen(filename, retry = 5) > ? > so when you add more args later it's not really scary on that one line? :) -sv