Author: julianfoad
Date: Wed Jun 15 08:20:28 2011
New Revision: 1135953
URL: http://svn.apache.org/viewvc?rev=1135953&view=rev
Log:
* subversion/tests/cmdline/svntest/wc.py
(text_base_path): Adjust comments.
Modified:
subversion/trunk/subversion/tests/cmdline/svntest/wc.py
Modified: subversion/trunk/subversion/tests/cmdline/svntest/wc.py
URL:
http://svn.apache.org/viewvc/subversion/trunk/subversion/tests/cmdline/svntest/wc.py?rev=1135953&r1=1135952&r2=1135953&view=diff
==============================================================================
--- subversion/trunk/subversion/tests/cmdline/svntest/wc.py (original)
+++ subversion/trunk/subversion/tests/cmdline/svntest/wc.py Wed Jun 15 08:20:28
2011
@@ -858,11 +858,12 @@ def text_base_path(file_path):
# Calculate single DB location
dot_svn = svntest.main.get_admin_name()
fn = os.path.join(root_path, dot_svn, 'pristine', checksum[0:2], checksum)
- ### When SVN_WC__VERSION is bumped to 29, then use: checksum + ".svn-base"
+ # For SVN_WC__VERSION < 29
if os.path.isfile(fn):
return fn
+ # For SVN_WC__VERSION >= 29
if os.path.isfile(fn + ".svn-base"):
return fn + ".svn-base"