> File "/arpa/ag/g/grog/pkg/bin/plucker-build", line 1058, in main > deprecated( "db_file", "doc_file" ) > NameError: There is no variable named 'deprecated'
> I can see where the deprecated function is defined. So why isn't it > being recognized? As for the other errors, I'm not even sure where to > start looking. deprecated is defined locally to main, but called within realmain. It is fixed in CVS, but the version of PyPlucker you have apparently hasn't been updated. If you move the deprecated function definition up to a top-level function, it will at least find and run deprecated, but that probably isn't what you really want. If you change the sitescooper to use doc_file instead of db_file, it will work. (Apparently sitescooper has fixed this in CVS, but not in the release version.) And no, a newer python won't fix this problem, though it might be a good thing anyhow. -jJ _______________________________________________ plucker-list mailing list [EMAIL PROTECTED] http://lists.rubberchicken.org/mailman/listinfo/plucker-list

