On Sat, Aug 13, 2005 at 12:26:02PM +0200, Julio M. Merino Vidal wrote: > Sure; I've attached it.
Done. > BTW, I tried to do a push from my laptop to my server and got the > same error. In the server, I've the following: > > function get_netsync_write_permitted (branch, identity) > if (branch == "net.venge.monotone") then > if (identity == "[EMAIL PROTECTED]") then return true end > end > ... Try removing the branch argument (see NEWS and recent discussion on list...). function get_netsync_write_permitted(identity) if identity == "[EMAIL PROTECTED]" then return true end return false end -- Nathaniel -- "If you can explain how you do something, then you're very very bad at it." -- John Hopfield _______________________________________________ Monotone-devel mailing list [email protected] http://lists.nongnu.org/mailman/listinfo/monotone-devel
