[svn.haxx.se] · SVN Dev · SVN Users · SVN Org · TSVN Dev · TSVN Users · Subclipse Dev · Subclipse Users · this month's index

Re: check-case-insensitive.py exception and

From: Martin Tomes <lists_at_tomes.org>
Date: 2005-07-21 10:12:54 CEST

Blair Zajac wrote:
> Hi Martin,
>
> I just got an exception from the new check-case-insensitive.py script
> from a large commit that is moving around my entire repository, shown
> below. This is Subversion 1.2.0 running on a Debian etch system.

Please would you try the attached patch. I couldn't reproduce the
failure but am fairly sure this will fix it.

-- 
Martin Tomes
echo 'martin at tomes x org x uk'\
  | sed -e 's/ x /\./g' -e 's/ at /@/'
Visit http://www.subversionary.org/

Index: check-case-insensitive.py
===================================================================
--- check-case-insensitive.py (revision 15362)
+++ check-case-insensitive.py (working copy)
@@ -117,7 +117,7 @@
     # compute the delta, printing as we go
     def authz_cb(root, path, pool):
       return 1
- repos.dir_delta(base_root, '', '', root, rootpath,
+ repos.dir_delta(base_root, '', '', root, rootpath.encode('utf-8'),
                     e_ptr, e_baton, authz_cb, 0, 1, 0, 0, self.pool)
     return editor
 

---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@subversion.tigris.org
For additional commands, e-mail: dev-help@subversion.tigris.org
Received on Thu Jul 21 10:14:06 2005

This is an archived mail posted to the Subversion Dev mailing list.

This site is subject to the Apache Privacy Policy and the Apache Public Forum Archive Policy.