On 30 September 2012 18:59, Rainer Suhm <[email protected]> wrote: > Description: Error when copying directories containing symlinks. > Cause: wrong call of os.symlink and os.readlink in misc.py > > Fix: > misc.py line 293 is actually > > os.symlink(os.readlink(srcname, dstname)) > > It should be: > > os.symlink(os.readlink(srcname), dstname) > > > > Thanks for your work on meld - it's a great tool!
Thanks for catching and fixing that. I've pushed your change to HEAD. cheers, Kai _______________________________________________ meld-list mailing list [email protected] https://mail.gnome.org/mailman/listinfo/meld-list
