Georg Bauer wrote:

> Hi!
>
> I have a metakit file that hangs on opening. I have this short
> Python script:
>
> db = metakit.storage('settings.dat') v = db.view('users')
>
> this already hangs. Anyone has any tools that try to fix integrity
> problems with metakit files? This file is rather important (it's
> the configuration of my weblog server muensterland.org), so I would
> really like to get the data back :-)

It might just be a typo, but you never know... The script you wrote
shouldn't work.  You need to open the storage using a mode:

db = metakit.storage('settings.dat', 0)
v = db.view('users')

Brian Kelley

>
> bye, Georg
>
>
>
> _____________________________________________ Metakit mailing list
> -  [EMAIL PROTECTED] http://www.equi4.com/mailman/listinfo/metakit


_____________________________________________ Metakit mailing list - [EMAIL PROTECTED] http://www.equi4.com/mailman/listinfo/metakit

Reply via email to