> >     deprecated( "db_file", "doc_file" )
> > NameError: deprecated
> 
> Hi Gary,
> 
> This is a parser issue, most likely. Bill Janssen is away on 
> vacation so he can't give his input right now. Not looking at
> the parser code, but just that error message, it may have
> been that the db_file= and db_name= keys are no longer valid
> and must be replaced with the newer doc_file= and doc_name= 
> keys (I barely felt like supporting these old keys either to 
> be honest, so I wouldn't be surprised if they were finally
> expunged out of the parser).

Looking at the parser code, we can see that the problem is that
the "deprecated" method is undefined in the block of code that
we're executing.  Which makes some sense, since by the time we
get to the "main" method, all the option parsing should have
been done.  (Well, most of the option parsing, anyways.)  I think
the problem is in the lines of code from 971 to 975:
        doc_file = config.get_string ('doc_file')
        if not doc_file:
            doc_file = config.get_string ('db_file')
            if doc_file:
                deprecated( "db_file", "doc_file" )

_______________________________________________
plucker-list mailing list
[EMAIL PROTECTED]
http://lists.rubberchicken.org/mailman/listinfo/plucker-list

Reply via email to