diff --git a/Builder/builder_custom_init.sh b/Builder/builder_custom_init.sh
index 129a9f9..79831e3 100755
--- a/Builder/builder_custom_init.sh
+++ b/Builder/builder_custom_init.sh
@@ -28,3 +28,5 @@ then
 else
     echo "Error: Cannot find python${PREF_VER} on the PATH"
 fi
+
+export WC_SVNVERSION=$(which svnversion)
diff --git a/Builder/svn-revision.txt b/Builder/svn-revision.txt
index 523bd11..c15a35c 100644
--- a/Builder/svn-revision.txt
+++ b/Builder/svn-revision.txt
@@ -1 +1 @@
-2070
+2092
diff --git a/Builder/version.info b/Builder/version.info
index c1dca68..0d8e53b 100644
--- a/Builder/version.info
+++ b/Builder/version.info
@@ -1,4 +1,4 @@
 MAJOR=1
 MINOR=9
-PATCH=15
+PATCH=18
 BUILD=0
diff --git a/Docs/pysvn_prog_ref.html b/Docs/pysvn_prog_ref.html
index 4eafd95..97b7fb6 100644
--- a/Docs/pysvn_prog_ref.html
+++ b/Docs/pysvn_prog_ref.html
@@ -1048,7 +1048,8 @@ diff( tmp_path,
       use_git_diff_format=False</span><span class="svn_1008000">,
       diff_added=False,
       ignore_properties=False,
-      properties_only=False</span> )
+      properties_only=False</span>,
+      return_bytes=False )
 </pre>
 <p>
 Return the differences between revision1 of url_or_path
@@ -1101,10 +1102,13 @@ will be used.
 </p>
 </div>
 <div class="svn_1008000">
-<p>if diff_added is True show diff of added files.</p>
-<p>if ignore_properties is True then ignore diff of properties.</p>
-<p>if properties_only is True then only diff properties.</p>
+<p>If diff_added is True show diff of added files.</p>
+<p>If ignore_properties is True then ignore diff of properties.</p>
+<p>If properties_only is True then only diff properties.</p>
 </div>
+<p>If return_bytes is True diff_text is returned as a bytes object.
+Otherwise diff_text is assumed to be UTF-8 and a string is returned.
+</p>
 
 <div class="svn_1001000">
 <h4><a name="pysvn_client_diff_peg"><a href="#pysvn_module">pysvn</a>.<a href="#pysvn_client">Client</a>.diff_peg</a></h4>
@@ -1126,7 +1130,8 @@ diff_peg( tmp_path,
           use_git_diff_format=False</span><span class="svn_1008000">,
           diff_added=False,
           ignore_properties=False,
-          properties_only=False</span> )
+          properties_only=False</span>,
+          return_bytes=False )
 </pre>
 <p>
 return the differences between two revisions of the url_or_path.
@@ -1177,9 +1182,9 @@ will be used.
 </p>
 </div>
 <div class="svn_1008000">
-<p>if diff_added is True show diff of added files.</p>
-<p>if ignore_properties is True then ignore diff of properties.</p>
-<p>if properties_only is True then only diff properties.</p>
+<p>If diff_added is True show diff of added files.</p>
+<p>If ignore_properties is True then ignore diff of properties.</p>
+<p>If properties_only is True then only diff properties.</p>
 </div>
 
 <div class="svn_1004000">
@@ -1207,6 +1212,9 @@ have the same contents.
 <div class="svn_1005000">
 <p>The depth can be used as in place of recurse. depth is one of the pysvn.depth enums.
 </p>
+<p>If return_bytes is True diff_text is returned as a bytes object.
+Otherwise diff_text is assumed to be UTF-8 and a string is returned.
+</p>
 </div>
 </div>
 
diff --git a/Examples/Client/svn_cmd.py b/Examples/Client/svn_cmd.py
index 1332c4c..42e4c87 100644
--- a/Examples/Client/svn_cmd.py
+++ b/Examples/Client/svn_cmd.py
@@ -381,7 +381,7 @@ class SvnCommand:
     def cmd_add( self, args ):
         recurse = args.getBooleanOption( '--non-recursive', False )
         force = args.getBooleanOption( '--force', False )
-        
+
         self.client.add( args.getPositionalArgs( 1 ), recurse=recurse, force=force )
 
     def cmd_add_to_changelist( self, args ):
@@ -502,6 +502,7 @@ class SvnCommand:
     def cmd_diff( self, args ):
         recurse = args.getBooleanOption( '--non-recursive', False )
         revision1, revision2 = args.getOptionalRevisionPair( '--revision', 'base', 'working' )
+        return_bytes = args.getBooleanOption( '--return-bytes', True )
         positional_args = args.getPositionalArgs( 0, 1 )
         if len(positional_args) == 0:
             positional_args.append( '.' )
@@ -523,8 +524,13 @@ class SvnCommand:
         self.debug( 'cmd_diff %r, %r, %r, %r, %r' % (tmpdir, positional_args[0], recurse, revision1, revision2) )
         diff_text = self.client.diff( tmpdir, positional_args[0], recurse=recurse,
                                             revision1=revision1, revision2=revision2,
-                                            diff_options=['-u'] )
-        print( diff_text.replace( '\r\n', '\n' ) )
+                                            diff_options=['-u'],
+                                            return_bytes=return_bytes )
+        if return_bytes:
+            for line in diff_text.split( b'\n' ):
+                print(repr(line))
+        else:
+            print( diff_text.replace( '\r\n', '\n' ) )
 
     def cmd_export( self, args ):
         force = args.getBooleanOption( '--force', False )
@@ -1360,6 +1366,7 @@ long_opt_info = {
     '--relocate': 0,            # relocate via URL-rewriting
     '--remove-ignored-items': 0,
     '--remove-unversioned-items': 0,
+    '--return-bytes': 0,
     '--revision': 1,            # revision X or X:Y range.  X or Y can be one of:
     '--revprop': 0,             # operate on a revision property (use with -r)
     '--search': 2,              # search for pattern
diff --git a/Source/build.sh b/Source/build.sh
index 02406e5..b585867 100755
--- a/Source/build.sh
+++ b/Source/build.sh
@@ -4,11 +4,13 @@ set -e
 if [ "$1" != "" ]
 then
     PY_VER=$1
+    shift
 fi
 
-if [ "$2" != "" ]
+if [ "$1" != "" ]
 then
-    SVN_VER=$2
+    SVN_VER=$1
+    shift
 fi
 
 export MACOSX_DEPLOYMENT_TARGET=10.9
@@ -17,7 +19,8 @@ case "$(uname)" in
 Linux)
     python${PY_VER} setup.py configure \
         --enable-debug \
-        --verbose
+        --verbose \
+        "$@"
     ;;
 
 Darwin)
@@ -26,7 +29,9 @@ Darwin)
         --distro-dir=/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk/usr \
         --arch=x86_64 \
         --pycxx-dir=${BUILDER_TOP_DIR}/Import/pycxx-${PYCXX_VER} \
-        --verbose
+        --define=APR_IOVEC_DEFINED \
+        --verbose \
+        "$@"
     ;;
 *)
     echo "Error: need support for $(uname)"
diff --git a/Source/pysvn_client_cmd_diff.cpp b/Source/pysvn_client_cmd_diff.cpp
index fcbf46a..85e796d 100644
--- a/Source/pysvn_client_cmd_diff.cpp
+++ b/Source/pysvn_client_cmd_diff.cpp
@@ -214,6 +214,7 @@ Py::Object pysvn_client::cmd_diff( const Py::Tuple &a_args, const Py::Dict &a_kw
     { false, name_ignore_properties },
     { false, name_properties_only },
 #endif
+    { false, name_return_bytes },
     { false, NULL }
     };
     FunctionArguments args( "diff", args_desc, a_args, a_kws );
@@ -235,6 +236,8 @@ Py::Object pysvn_client::cmd_diff( const Py::Tuple &a_args, const Py::Dict &a_kw
     bool ignore_content_type = args.getBoolean( name_ignore_content_type, false );
 #endif
 
+    bool return_bytes = args.getBoolean( name_return_bytes, false );
+
     SvnPool pool( m_context );
 
 #if defined( PYSVN_HAS_CLIENT_DIFF3 )
@@ -434,8 +437,15 @@ Py::Object pysvn_client::cmd_diff( const Py::Tuple &a_args, const Py::Dict &a_kw
         throw_client_error( e );
     }
 
-    // cannot convert to Unicode as we have no idea of the encoding of the bytes
-    return Py::String( stringbuf->data, (int)stringbuf->len );
+    if( return_bytes )
+    {
+        return Py::Bytes( stringbuf->data, (int)stringbuf->len );
+    }
+    else
+    {
+        // assume that the data is UTF-8
+        return Py::String( stringbuf->data, (int)stringbuf->len, name_utf8 );
+    }
 }
 
 #if defined( PYSVN_HAS_CLIENT_DIFF_PEG )
@@ -472,6 +482,7 @@ Py::Object pysvn_client::cmd_diff_peg( const Py::Tuple &a_args, const Py::Dict &
     { false, name_ignore_properties },
     { false, name_properties_only },
 #endif
+    { false, name_return_bytes },
     { false, NULL }
     };
     FunctionArguments args( "diff_peg", args_desc, a_args, a_kws );
@@ -483,6 +494,8 @@ Py::Object pysvn_client::cmd_diff_peg( const Py::Tuple &a_args, const Py::Dict &
     svn_opt_revision_t revision_end = args.getRevision( name_revision_end, svn_opt_revision_working );
     svn_opt_revision_t peg_revision = args.getRevision( name_peg_revision, revision_end );
 
+    bool return_bytes = args.getBoolean( name_return_bytes, false );
+
     SvnPool pool( m_context );
 
 #if defined( PYSVN_HAS_CLIENT_DIFF_PEG4 )
@@ -710,8 +723,14 @@ Py::Object pysvn_client::cmd_diff_peg( const Py::Tuple &a_args, const Py::Dict &
         throw_client_error( e );
     }
 
-    // cannot convert to Unicode as we have no idea of the encoding of the bytes
-    return Py::String( stringbuf->data, (int)stringbuf->len );
+    if( return_bytes )
+    {
+        return Py::Bytes( stringbuf->data, (int)stringbuf->len );
+    }
+    else
+    {
+        return Py::String( stringbuf->data, (int)stringbuf->len, name_utf8 );
+    }
 }
 #endif
 
@@ -862,7 +881,6 @@ Py::Object pysvn_client::cmd_diff_summarize( const Py::Tuple &a_args, const Py::
         throw_client_error( e );
     }
 
-    // cannot convert to Unicode as we have no idea of the encoding of the bytes
     return diff_list;
 }
 
diff --git a/Source/pysvn_static_strings.hpp b/Source/pysvn_static_strings.hpp
index 8188c3f..40f9500 100644
--- a/Source/pysvn_static_strings.hpp
+++ b/Source/pysvn_static_strings.hpp
@@ -143,6 +143,7 @@ PYSVN_STATIC_STRING( name_properties_only, "properties_only" )
 PYSVN_STATIC_STRING( name_ranges_to_merge, "ranges_to_merge" )
 PYSVN_STATIC_STRING( name_record_only, "record_only" )
 PYSVN_STATIC_STRING( name_recurse, "recurse" )
+PYSVN_STATIC_STRING( name_return_bytes, "return_bytes" )
 PYSVN_STATIC_STRING( name_relative_to_dir, "relative_to_dir" )
 PYSVN_STATIC_STRING( name_remove_ignored_items, "remove_ignored_items" )
 PYSVN_STATIC_STRING( name_remove_tempfiles, "remove_tempfiles" )
diff --git a/Tests/test-01.sh b/Tests/test-01.sh
index 4f8e279..c0bd6e3 100755
--- a/Tests/test-01.sh
+++ b/Tests/test-01.sh
@@ -124,6 +124,11 @@ echo Info: Testing - diff
 echo new line >>${TESTROOT}/wc2/test/file1b.txt
 cmd_pysvn diff ${TESTROOT}/wc2
 
+echo Info: Testing - diff none utf-8
+echo "Non UTF-8 À is 0xc0" | iconv --from-code=utf-8 --to-code=iso-8859-1 >>${TESTROOT}/wc2/test/file1b.txt
+cmd_pysvn diff --return-bytes ${TESTROOT}/wc2
+
+
 echo Info: Testing - export
 cmd_pysvn export file://${TESTROOT}/repos/trunk/test ${TESTROOT}/export1.native
 cmd_pysvn export --native-eol CR file://${TESTROOT}/repos/trunk/test ${TESTROOT}/export1.cr
diff --git a/Tests/test-01.unix.known_good-py3-svn1.10.log b/Tests/test-01.unix.known_good-py3-svn1.10.log
index f6be616..27b542e 100644
--- a/Tests/test-01.unix.known_good-py3-svn1.10.log
+++ b/Tests/test-01.unix.known_good-py3-svn1.10.log
@@ -1,822 +1,835 @@
-WorkDir: /Users/barry/wc/svn/pysvn/Extension
-PYTHON: /usr/local/bin/python3.5
+WorkDir: /Users/barry/Projects/pysvn/Extension
+PYTHON: /usr/local/bin/python3.7
 Username: barry
-Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests
+Info: CWD: /Users/barry/Projects/pysvn/Extension/Tests
 Info: Command: mkdir testroot-01
-Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests
+Info: CWD: /Users/barry/Projects/pysvn/Extension/Tests
 Info: Command: cd testroot-01
-Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01
+Info: CWD: /Users/barry/Projects/pysvn/Extension/Tests/testroot-01
 Info: Command: mkdir tmp
-Info: PYSVN command /usr/local/bin/python3.5 /Users/barry/wc/svn/pysvn/Extension/Examples/Client/svn_cmd.py --pysvn-testing 01.01.00 --config-dir /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/configdir
-Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01
-Info: Command: svnadmin create /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/repos
+Info: PYSVN command /usr/local/bin/python3.7 /Users/barry/Projects/pysvn/Extension/Examples/Client/svn_cmd.py --pysvn-testing 01.01.00 --config-dir /Users/barry/Projects/pysvn/Extension/Tests/testroot-01/configdir
+Info: CWD: /Users/barry/Projects/pysvn/Extension/Tests/testroot-01
+Info: Command: svnadmin create /Users/barry/Projects/pysvn/Extension/Tests/testroot-01/repos
 Info: Testing - mkdir
-Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01
-Info: pysvn command: mkdir file:///Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/repos/trunk -m test-01 add trunk
+Info: CWD: /Users/barry/Projects/pysvn/Extension/Tests/testroot-01
+Info: pysvn command: mkdir file:///Users/barry/Projects/pysvn/Extension/Tests/testroot-01/repos/trunk -m test-01 add trunk
 commit_finalizing .
-Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01
-Info: pysvn command: mkdir file:///Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/repos/trunk/test -m test-01 add test
+Info: CWD: /Users/barry/Projects/pysvn/Extension/Tests/testroot-01
+Info: pysvn command: mkdir file:///Users/barry/Projects/pysvn/Extension/Tests/testroot-01/repos/trunk/test -m test-01 add test
 commit_finalizing .
 Info: Testing - ls
-Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01
-Info: pysvn command: ls file:///Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/repos -v -R
-      2 barry           - 01-Apr-2018 09:55:46 file:///Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/repos/trunk
-      2 barry           - 01-Apr-2018 09:55:46 file:///Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/repos/trunk/test
+Info: CWD: /Users/barry/Projects/pysvn/Extension/Tests/testroot-01
+Info: pysvn command: ls file:///Users/barry/Projects/pysvn/Extension/Tests/testroot-01/repos -v -R
+      2 barry           - 30-Jan-2022 14:13:08 file:///Users/barry/Projects/pysvn/Extension/Tests/testroot-01/repos/trunk
+      2 barry           - 30-Jan-2022 14:13:08 file:///Users/barry/Projects/pysvn/Extension/Tests/testroot-01/repos/trunk/test
 Info: Testing - checkout
-Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01
-Info: pysvn command: checkout file:///Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/repos/trunk /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1
-A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test
-U /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1
-update_started /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1
+Info: CWD: /Users/barry/Projects/pysvn/Extension/Tests/testroot-01
+Info: pysvn command: checkout file:///Users/barry/Projects/pysvn/Extension/Tests/testroot-01/repos/trunk /Users/barry/Projects/pysvn/Extension/Tests/testroot-01/wc1
+A /Users/barry/Projects/pysvn/Extension/Tests/testroot-01/wc1/test
+U /Users/barry/Projects/pysvn/Extension/Tests/testroot-01/wc1
+update_started /Users/barry/Projects/pysvn/Extension/Tests/testroot-01/wc1
 Checked out revision 2
-Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01
-Info: Command: /usr/local/bin/python3.5 /Users/barry/wc/svn/pysvn/Extension/Tests/find.py /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1
-Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01
-Info: Command: cd /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test
+Info: CWD: /Users/barry/Projects/pysvn/Extension/Tests/testroot-01
+Info: Command: /usr/local/bin/python3.7 /Users/barry/Projects/pysvn/Extension/Tests/find.py /Users/barry/Projects/pysvn/Extension/Tests/testroot-01/wc1
+Info: CWD: /Users/barry/Projects/pysvn/Extension/Tests/testroot-01
+Info: Command: cd /Users/barry/Projects/pysvn/Extension/Tests/testroot-01/wc1/test
 Info: Testing - add
-Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test
+Info: CWD: /Users/barry/Projects/pysvn/Extension/Tests/testroot-01/wc1/test
 Info: pysvn command: add file1.txt
-A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test/file1.txt
-Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test
+A /Users/barry/Projects/pysvn/Extension/Tests/testroot-01/wc1/test/file1.txt
+Info: CWD: /Users/barry/Projects/pysvn/Extension/Tests/testroot-01/wc1/test
 Info: pysvn command: add file2.txt
-A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test/file2.txt
-Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test
+A /Users/barry/Projects/pysvn/Extension/Tests/testroot-01/wc1/test/file2.txt
+Info: CWD: /Users/barry/Projects/pysvn/Extension/Tests/testroot-01/wc1/test
 Info: pysvn command: add file3.txt
-A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test/file3.txt
-Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test
+A /Users/barry/Projects/pysvn/Extension/Tests/testroot-01/wc1/test/file3.txt
+Info: CWD: /Users/barry/Projects/pysvn/Extension/Tests/testroot-01/wc1/test
 Info: pysvn command: add file4.txt
-A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test/file4.txt
-Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test
+A /Users/barry/Projects/pysvn/Extension/Tests/testroot-01/wc1/test/file4.txt
+Info: CWD: /Users/barry/Projects/pysvn/Extension/Tests/testroot-01/wc1/test
 Info: pysvn command: add --force file5.txt
-A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test/file5.txt
-Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test
+A /Users/barry/Projects/pysvn/Extension/Tests/testroot-01/wc1/test/file5.txt
+Info: CWD: /Users/barry/Projects/pysvn/Extension/Tests/testroot-01/wc1/test
 Info: pysvn command: add file6.txt
-A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test/file6.txt
-Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test
+A /Users/barry/Projects/pysvn/Extension/Tests/testroot-01/wc1/test/file6.txt
+Info: CWD: /Users/barry/Projects/pysvn/Extension/Tests/testroot-01/wc1/test
 Info: pysvn command: add folder1
-A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test/folder1
-A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test/folder1/file7.txt
-A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test/folder1/folder2
-A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test/folder1/folder2/file8.txt
-Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test
+A /Users/barry/Projects/pysvn/Extension/Tests/testroot-01/wc1/test/folder1
+A /Users/barry/Projects/pysvn/Extension/Tests/testroot-01/wc1/test/folder1/file7.txt
+A /Users/barry/Projects/pysvn/Extension/Tests/testroot-01/wc1/test/folder1/folder2
+A /Users/barry/Projects/pysvn/Extension/Tests/testroot-01/wc1/test/folder1/folder2/file8.txt
+Info: CWD: /Users/barry/Projects/pysvn/Extension/Tests/testroot-01/wc1/test
 Info: pysvn command: add --non-recursive folder3
-A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test/folder3
-Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test
+A /Users/barry/Projects/pysvn/Extension/Tests/testroot-01/wc1/test/folder3
+Info: CWD: /Users/barry/Projects/pysvn/Extension/Tests/testroot-01/wc1/test
 Info: pysvn command: checkin -m commit added files
-A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test/file1.txt
-A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test/file2.txt
-A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test/file3.txt
-A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test/file4.txt
-A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test/file5.txt
-A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test/file6.txt
-A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test/folder1
-A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test/folder1/file7.txt
-A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test/folder1/folder2
-A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test/folder1/folder2/file8.txt
-A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test/folder3
+A /Users/barry/Projects/pysvn/Extension/Tests/testroot-01/wc1/test/file1.txt
+A /Users/barry/Projects/pysvn/Extension/Tests/testroot-01/wc1/test/file2.txt
+A /Users/barry/Projects/pysvn/Extension/Tests/testroot-01/wc1/test/file3.txt
+A /Users/barry/Projects/pysvn/Extension/Tests/testroot-01/wc1/test/file4.txt
+A /Users/barry/Projects/pysvn/Extension/Tests/testroot-01/wc1/test/file5.txt
+A /Users/barry/Projects/pysvn/Extension/Tests/testroot-01/wc1/test/file6.txt
+A /Users/barry/Projects/pysvn/Extension/Tests/testroot-01/wc1/test/folder1
+A /Users/barry/Projects/pysvn/Extension/Tests/testroot-01/wc1/test/folder1/file7.txt
+A /Users/barry/Projects/pysvn/Extension/Tests/testroot-01/wc1/test/folder1/folder2
+A /Users/barry/Projects/pysvn/Extension/Tests/testroot-01/wc1/test/folder1/folder2/file8.txt
+A /Users/barry/Projects/pysvn/Extension/Tests/testroot-01/wc1/test/folder3
 commit_finalizing .
 Revision 3
 Info: Setup to test access to deleted files
-Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test
+Info: CWD: /Users/barry/Projects/pysvn/Extension/Tests/testroot-01/wc1/test
 Info: pysvn command: checkin -m commit mod file
-M /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test/file6.txt
+M /Users/barry/Projects/pysvn/Extension/Tests/testroot-01/wc1/test/file6.txt
 commit_finalizing .
 Revision 4
-Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test
+Info: CWD: /Users/barry/Projects/pysvn/Extension/Tests/testroot-01/wc1/test
 Info: pysvn command: rm file6.txt
-D /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test/file6.txt
-Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test
+D /Users/barry/Projects/pysvn/Extension/Tests/testroot-01/wc1/test/file6.txt
+Info: CWD: /Users/barry/Projects/pysvn/Extension/Tests/testroot-01/wc1/test
 Info: pysvn command: checkin -m commit delete file
-D /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test/file6.txt
+D /Users/barry/Projects/pysvn/Extension/Tests/testroot-01/wc1/test/file6.txt
 commit_finalizing .
 Revision 5
 Info: Testing - update - get a new wc that will update
-Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test
-Info: pysvn command: checkout file:///Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/repos/trunk /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2
-A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test
-A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file1.txt
-A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file2.txt
-A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file3.txt
-A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file4.txt
-A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file5.txt
-A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/folder1
-A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/folder1/file7.txt
-A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/folder1/folder2
-A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/folder1/folder2/file8.txt
-A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/folder3
-U /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2
-update_started /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2
+Info: CWD: /Users/barry/Projects/pysvn/Extension/Tests/testroot-01/wc1/test
+Info: pysvn command: checkout file:///Users/barry/Projects/pysvn/Extension/Tests/testroot-01/repos/trunk /Users/barry/Projects/pysvn/Extension/Tests/testroot-01/wc2
+A /Users/barry/Projects/pysvn/Extension/Tests/testroot-01/wc2/test
+A /Users/barry/Projects/pysvn/Extension/Tests/testroot-01/wc2/test/file1.txt
+A /Users/barry/Projects/pysvn/Extension/Tests/testroot-01/wc2/test/file2.txt
+A /Users/barry/Projects/pysvn/Extension/Tests/testroot-01/wc2/test/file3.txt
+A /Users/barry/Projects/pysvn/Extension/Tests/testroot-01/wc2/test/file4.txt
+A /Users/barry/Projects/pysvn/Extension/Tests/testroot-01/wc2/test/file5.txt
+A /Users/barry/Projects/pysvn/Extension/Tests/testroot-01/wc2/test/folder1
+A /Users/barry/Projects/pysvn/Extension/Tests/testroot-01/wc2/test/folder1/file7.txt
+A /Users/barry/Projects/pysvn/Extension/Tests/testroot-01/wc2/test/folder1/folder2
+A /Users/barry/Projects/pysvn/Extension/Tests/testroot-01/wc2/test/folder1/folder2/file8.txt
+A /Users/barry/Projects/pysvn/Extension/Tests/testroot-01/wc2/test/folder3
+U /Users/barry/Projects/pysvn/Extension/Tests/testroot-01/wc2
+update_started /Users/barry/Projects/pysvn/Extension/Tests/testroot-01/wc2
 Checked out revision 5
 Info: Testing - - checkin a mod from wc1
-Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test
+Info: CWD: /Users/barry/Projects/pysvn/Extension/Tests/testroot-01/wc1/test
 Info: pysvn command: checkin -m commit modified file
-M /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test/file1.txt
+M /Users/barry/Projects/pysvn/Extension/Tests/testroot-01/wc1/test/file1.txt
 commit_finalizing .
 Revision 6
 Info: Testing - update
-Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test
-Info: pysvn command: update /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2
-U /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2
-U /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test
-U /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file1.txt
-update_started /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2
+Info: CWD: /Users/barry/Projects/pysvn/Extension/Tests/testroot-01/wc1/test
+Info: pysvn command: update /Users/barry/Projects/pysvn/Extension/Tests/testroot-01/wc2
+U /Users/barry/Projects/pysvn/Extension/Tests/testroot-01/wc2
+U /Users/barry/Projects/pysvn/Extension/Tests/testroot-01/wc2/test
+U /Users/barry/Projects/pysvn/Extension/Tests/testroot-01/wc2/test/file1.txt
+update_started /Users/barry/Projects/pysvn/Extension/Tests/testroot-01/wc2
 Updated to revision 6
 Info: Testing - the rest in lexical order
 Info: Testing - annotate
-Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test
-Info: pysvn command: annotate /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file1.txt
+Info: CWD: /Users/barry/Projects/pysvn/Extension/Tests/testroot-01/wc1/test
+Info: pysvn command: annotate /Users/barry/Projects/pysvn/Extension/Tests/testroot-01/wc2/test/file1.txt
 A /trunk/test/file1.txt
 A /trunk/test/file1.txt
-1| r3 | barry | 2018-04-01T08:55:48.656649Z | test add file 1
-2| r6 | barry | 2018-04-01T08:55:52.264880Z | line 2
-Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test
-Info: pysvn command: annotate -r 3:4 file:///Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/repos/trunk/test/file6.txt
+1| r3 | barry | 2022-01-30T14:13:11.340773Z | test add file 1
+2| r6 | barry | 2022-01-30T14:13:15.208420Z | line 2
+Info: CWD: /Users/barry/Projects/pysvn/Extension/Tests/testroot-01/wc1/test
+Info: pysvn command: annotate -r 3:4 file:///Users/barry/Projects/pysvn/Extension/Tests/testroot-01/repos/trunk/test/file6.txt
 A /trunk/test/file6.txt
 A /trunk/test/file6.txt
-1| r3 | barry | 2018-04-01T08:55:48.656649Z | test add file 6
-2| r4 | barry | 2018-04-01T08:55:49.246188Z | test mod file 6
+1| r3 | barry | 2022-01-30T14:13:11.340773Z | test add file 6
+2| r4 | barry | 2022-01-30T14:13:12.245651Z | test mod file 6
 Info: Testing - cat
-Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test
-Info: pysvn command: cat -r head file:///Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/repos/trunk/test/file1.txt
+Info: CWD: /Users/barry/Projects/pysvn/Extension/Tests/testroot-01/wc1/test
+Info: pysvn command: cat -r head file:///Users/barry/Projects/pysvn/Extension/Tests/testroot-01/repos/trunk/test/file1.txt
 test add file 1
 line 2
 
-Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test
-Info: pysvn command: cat -r 4 file:///Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/repos/trunk/test/file6.txt
+Info: CWD: /Users/barry/Projects/pysvn/Extension/Tests/testroot-01/wc1/test
+Info: pysvn command: cat -r 4 file:///Users/barry/Projects/pysvn/Extension/Tests/testroot-01/repos/trunk/test/file6.txt
 test add file 6
 test mod file 6
 
 Info: Testing - cleanup
-Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test
-Info: pysvn command: cleanup /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1
-Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test
-Info: Command: cd /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1
-Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1
+Info: CWD: /Users/barry/Projects/pysvn/Extension/Tests/testroot-01/wc1/test
+Info: pysvn command: cleanup /Users/barry/Projects/pysvn/Extension/Tests/testroot-01/wc1
+Info: CWD: /Users/barry/Projects/pysvn/Extension/Tests/testroot-01/wc1/test
+Info: Command: cd /Users/barry/Projects/pysvn/Extension/Tests/testroot-01/wc1
+Info: CWD: /Users/barry/Projects/pysvn/Extension/Tests/testroot-01/wc1
 Info: pysvn command: cleanup .
-Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1
-Info: Command: cd /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test
+Info: CWD: /Users/barry/Projects/pysvn/Extension/Tests/testroot-01/wc1
+Info: Command: cd /Users/barry/Projects/pysvn/Extension/Tests/testroot-01/wc1/test
 Info: Testing - copy
-Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test
-Info: pysvn command: mkdir file:///Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/repos/tags -m test-01 add tags
+Info: CWD: /Users/barry/Projects/pysvn/Extension/Tests/testroot-01/wc1/test
+Info: pysvn command: mkdir file:///Users/barry/Projects/pysvn/Extension/Tests/testroot-01/repos/tags -m test-01 add tags
 commit_finalizing .
-Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test
-Info: pysvn command: copy file:///Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/repos/trunk file:///Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/repos/tags/version1
+Info: CWD: /Users/barry/Projects/pysvn/Extension/Tests/testroot-01/wc1/test
+Info: pysvn command: copy file:///Users/barry/Projects/pysvn/Extension/Tests/testroot-01/repos/trunk file:///Users/barry/Projects/pysvn/Extension/Tests/testroot-01/repos/tags/version1
 Log message
 --- -------
 commit_finalizing .
-Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test
-Info: pysvn command: ls -v file:///Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/repos/tags
-      8 barry           - 01-Apr-2018 09:55:56 file:///Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/repos/tags/version1
-Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test
-Info: pysvn command: copy /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file1.txt /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file1b.txt
-A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file1b.txt
-Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test
-Info: pysvn command: propset svn:eol-style native /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file1b.txt
-property_added /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file1b.txt
-Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test
-Info: pysvn command: checkin /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2 -m copy test
-commit_copied /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file1b.txt
+Info: CWD: /Users/barry/Projects/pysvn/Extension/Tests/testroot-01/wc1/test
+Info: pysvn command: ls -v file:///Users/barry/Projects/pysvn/Extension/Tests/testroot-01/repos/tags
+      8 barry           - 30-Jan-2022 14:13:19 file:///Users/barry/Projects/pysvn/Extension/Tests/testroot-01/repos/tags/version1
+Info: CWD: /Users/barry/Projects/pysvn/Extension/Tests/testroot-01/wc1/test
+Info: pysvn command: copy /Users/barry/Projects/pysvn/Extension/Tests/testroot-01/wc2/test/file1.txt /Users/barry/Projects/pysvn/Extension/Tests/testroot-01/wc2/test/file1b.txt
+A /Users/barry/Projects/pysvn/Extension/Tests/testroot-01/wc2/test/file1b.txt
+Info: CWD: /Users/barry/Projects/pysvn/Extension/Tests/testroot-01/wc1/test
+Info: pysvn command: propset svn:eol-style native /Users/barry/Projects/pysvn/Extension/Tests/testroot-01/wc2/test/file1b.txt
+property_added /Users/barry/Projects/pysvn/Extension/Tests/testroot-01/wc2/test/file1b.txt
+Info: CWD: /Users/barry/Projects/pysvn/Extension/Tests/testroot-01/wc1/test
+Info: pysvn command: checkin /Users/barry/Projects/pysvn/Extension/Tests/testroot-01/wc2 -m copy test
+commit_copied /Users/barry/Projects/pysvn/Extension/Tests/testroot-01/wc2/test/file1b.txt
 commit_finalizing .
 Revision 9
 Info: Testing - diff
-Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test
-Info: pysvn command: diff /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2
-Index: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file1b.txt
+Info: CWD: /Users/barry/Projects/pysvn/Extension/Tests/testroot-01/wc1/test
+Info: pysvn command: diff /Users/barry/Projects/pysvn/Extension/Tests/testroot-01/wc2
+Index: /Users/barry/Projects/pysvn/Extension/Tests/testroot-01/wc2/test/file1b.txt
 ===================================================================
---- /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file1b.txt	(revision 9)
-+++ /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file1b.txt	(working copy)
+--- /Users/barry/Projects/pysvn/Extension/Tests/testroot-01/wc2/test/file1b.txt	(revision 9)
++++ /Users/barry/Projects/pysvn/Extension/Tests/testroot-01/wc2/test/file1b.txt	(working copy)
 @@ -1,2 +1,3 @@
  test add file 1
  line 2
 +new line
 
+Info: Testing - diff none utf-8
+Info: CWD: /Users/barry/Projects/pysvn/Extension/Tests/testroot-01/wc1/test
+Info: pysvn command: diff --return-bytes /Users/barry/Projects/pysvn/Extension/Tests/testroot-01/wc2
+b'Index: /Users/barry/Projects/pysvn/Extension/Tests/testroot-01/wc2/test/file1b.txt'
+b'==================================================================='
+b'--- /Users/barry/Projects/pysvn/Extension/Tests/testroot-01/wc2/test/file1b.txt\t(revision 9)'
+b'+++ /Users/barry/Projects/pysvn/Extension/Tests/testroot-01/wc2/test/file1b.txt\t(working copy)'
+b'@@ -1,2 +1,4 @@'
+b' test add file 1'
+b' line 2'
+b'+new line'
+b'+Non UTF-8 \xc0 is 0xc0'
+b''
 Info: Testing - export
-Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test
-Info: pysvn command: export file:///Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/repos/trunk/test /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.native
-A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.native
-A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.native/file1.txt
-A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.native/file1b.txt
-A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.native/file2.txt
-A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.native/file3.txt
-A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.native/file4.txt
-A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.native/file5.txt
-A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.native/folder1
-A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.native/folder1/file7.txt
-A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.native/folder1/folder2
-A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.native/folder1/folder2/file8.txt
-A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.native/folder3
-Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test
-Info: pysvn command: export --native-eol CR file:///Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/repos/trunk/test /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.cr
-A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.cr
-A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.cr/file1.txt
-A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.cr/file1b.txt
-A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.cr/file2.txt
-A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.cr/file3.txt
-A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.cr/file4.txt
-A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.cr/file5.txt
-A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.cr/folder1
-A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.cr/folder1/file7.txt
-A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.cr/folder1/folder2
-A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.cr/folder1/folder2/file8.txt
-A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.cr/folder3
-Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test
-Info: pysvn command: export --native-eol LF file:///Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/repos/trunk/test /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.lf
-A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.lf
-A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.lf/file1.txt
-A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.lf/file1b.txt
-A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.lf/file2.txt
-A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.lf/file3.txt
-A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.lf/file4.txt
-A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.lf/file5.txt
-A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.lf/folder1
-A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.lf/folder1/file7.txt
-A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.lf/folder1/folder2
-A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.lf/folder1/folder2/file8.txt
-A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.lf/folder3
-Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test
-Info: pysvn command: export --native-eol CRLF file:///Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/repos/trunk/test /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.crlf
-A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.crlf
-A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.crlf/file1.txt
-A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.crlf/file1b.txt
-A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.crlf/file2.txt
-A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.crlf/file3.txt
-A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.crlf/file4.txt
-A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.crlf/file5.txt
-A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.crlf/folder1
-A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.crlf/folder1/file7.txt
-A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.crlf/folder1/folder2
-A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.crlf/folder1/folder2/file8.txt
-A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.crlf/folder3
-/Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.native/file1.txt
-/Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.native/file1b.txt
-/Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.native/file2.txt
-/Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.native/file3.txt
-/Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.native/file4.txt
-/Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.native/file5.txt
-/Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.native/folder1/file7.txt
-/Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.native/folder1/folder2/file8.txt
-/Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.cr/file1.txt
-/Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.cr/file1b.txt
-/Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.cr/file2.txt
-/Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.cr/file3.txt
-/Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.cr/file4.txt
-/Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.cr/file5.txt
-/Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.cr/folder1/file7.txt
-/Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.cr/folder1/folder2/file8.txt
-/Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.lf/file1.txt
-/Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.lf/file1b.txt
-/Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.lf/file2.txt
-/Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.lf/file3.txt
-/Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.lf/file4.txt
-/Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.lf/file5.txt
-/Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.lf/folder1/file7.txt
-/Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.lf/folder1/folder2/file8.txt
-/Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.crlf/file1.txt
-/Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.crlf/file1b.txt
-/Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.crlf/file2.txt
-/Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.crlf/file3.txt
-/Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.crlf/file4.txt
-/Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.crlf/file5.txt
-/Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.crlf/folder1/file7.txt
-/Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.crlf/folder1/folder2/file8.txt
+Info: CWD: /Users/barry/Projects/pysvn/Extension/Tests/testroot-01/wc1/test
+Info: pysvn command: export file:///Users/barry/Projects/pysvn/Extension/Tests/testroot-01/repos/trunk/test /Users/barry/Projects/pysvn/Extension/Tests/testroot-01/export1.native
+A /Users/barry/Projects/pysvn/Extension/Tests/testroot-01/export1.native
+A /Users/barry/Projects/pysvn/Extension/Tests/testroot-01/export1.native/file1.txt
+A /Users/barry/Projects/pysvn/Extension/Tests/testroot-01/export1.native/file1b.txt
+A /Users/barry/Projects/pysvn/Extension/Tests/testroot-01/export1.native/file2.txt
+A /Users/barry/Projects/pysvn/Extension/Tests/testroot-01/export1.native/file3.txt
+A /Users/barry/Projects/pysvn/Extension/Tests/testroot-01/export1.native/file4.txt
+A /Users/barry/Projects/pysvn/Extension/Tests/testroot-01/export1.native/file5.txt
+A /Users/barry/Projects/pysvn/Extension/Tests/testroot-01/export1.native/folder1
+A /Users/barry/Projects/pysvn/Extension/Tests/testroot-01/export1.native/folder1/file7.txt
+A /Users/barry/Projects/pysvn/Extension/Tests/testroot-01/export1.native/folder1/folder2
+A /Users/barry/Projects/pysvn/Extension/Tests/testroot-01/export1.native/folder1/folder2/file8.txt
+A /Users/barry/Projects/pysvn/Extension/Tests/testroot-01/export1.native/folder3
+Info: CWD: /Users/barry/Projects/pysvn/Extension/Tests/testroot-01/wc1/test
+Info: pysvn command: export --native-eol CR file:///Users/barry/Projects/pysvn/Extension/Tests/testroot-01/repos/trunk/test /Users/barry/Projects/pysvn/Extension/Tests/testroot-01/export1.cr
+A /Users/barry/Projects/pysvn/Extension/Tests/testroot-01/export1.cr
+A /Users/barry/Projects/pysvn/Extension/Tests/testroot-01/export1.cr/file1.txt
+A /Users/barry/Projects/pysvn/Extension/Tests/testroot-01/export1.cr/file1b.txt
+A /Users/barry/Projects/pysvn/Extension/Tests/testroot-01/export1.cr/file2.txt
+A /Users/barry/Projects/pysvn/Extension/Tests/testroot-01/export1.cr/file3.txt
+A /Users/barry/Projects/pysvn/Extension/Tests/testroot-01/export1.cr/file4.txt
+A /Users/barry/Projects/pysvn/Extension/Tests/testroot-01/export1.cr/file5.txt
+A /Users/barry/Projects/pysvn/Extension/Tests/testroot-01/export1.cr/folder1
+A /Users/barry/Projects/pysvn/Extension/Tests/testroot-01/export1.cr/folder1/file7.txt
+A /Users/barry/Projects/pysvn/Extension/Tests/testroot-01/export1.cr/folder1/folder2
+A /Users/barry/Projects/pysvn/Extension/Tests/testroot-01/export1.cr/folder1/folder2/file8.txt
+A /Users/barry/Projects/pysvn/Extension/Tests/testroot-01/export1.cr/folder3
+Info: CWD: /Users/barry/Projects/pysvn/Extension/Tests/testroot-01/wc1/test
+Info: pysvn command: export --native-eol LF file:///Users/barry/Projects/pysvn/Extension/Tests/testroot-01/repos/trunk/test /Users/barry/Projects/pysvn/Extension/Tests/testroot-01/export1.lf
+A /Users/barry/Projects/pysvn/Extension/Tests/testroot-01/export1.lf
+A /Users/barry/Projects/pysvn/Extension/Tests/testroot-01/export1.lf/file1.txt
+A /Users/barry/Projects/pysvn/Extension/Tests/testroot-01/export1.lf/file1b.txt
+A /Users/barry/Projects/pysvn/Extension/Tests/testroot-01/export1.lf/file2.txt
+A /Users/barry/Projects/pysvn/Extension/Tests/testroot-01/export1.lf/file3.txt
+A /Users/barry/Projects/pysvn/Extension/Tests/testroot-01/export1.lf/file4.txt
+A /Users/barry/Projects/pysvn/Extension/Tests/testroot-01/export1.lf/file5.txt
+A /Users/barry/Projects/pysvn/Extension/Tests/testroot-01/export1.lf/folder1
+A /Users/barry/Projects/pysvn/Extension/Tests/testroot-01/export1.lf/folder1/file7.txt
+A /Users/barry/Projects/pysvn/Extension/Tests/testroot-01/export1.lf/folder1/folder2
+A /Users/barry/Projects/pysvn/Extension/Tests/testroot-01/export1.lf/folder1/folder2/file8.txt
+A /Users/barry/Projects/pysvn/Extension/Tests/testroot-01/export1.lf/folder3
+Info: CWD: /Users/barry/Projects/pysvn/Extension/Tests/testroot-01/wc1/test
+Info: pysvn command: export --native-eol CRLF file:///Users/barry/Projects/pysvn/Extension/Tests/testroot-01/repos/trunk/test /Users/barry/Projects/pysvn/Extension/Tests/testroot-01/export1.crlf
+A /Users/barry/Projects/pysvn/Extension/Tests/testroot-01/export1.crlf
+A /Users/barry/Projects/pysvn/Extension/Tests/testroot-01/export1.crlf/file1.txt
+A /Users/barry/Projects/pysvn/Extension/Tests/testroot-01/export1.crlf/file1b.txt
+A /Users/barry/Projects/pysvn/Extension/Tests/testroot-01/export1.crlf/file2.txt
+A /Users/barry/Projects/pysvn/Extension/Tests/testroot-01/export1.crlf/file3.txt
+A /Users/barry/Projects/pysvn/Extension/Tests/testroot-01/export1.crlf/file4.txt
+A /Users/barry/Projects/pysvn/Extension/Tests/testroot-01/export1.crlf/file5.txt
+A /Users/barry/Projects/pysvn/Extension/Tests/testroot-01/export1.crlf/folder1
+A /Users/barry/Projects/pysvn/Extension/Tests/testroot-01/export1.crlf/folder1/file7.txt
+A /Users/barry/Projects/pysvn/Extension/Tests/testroot-01/export1.crlf/folder1/folder2
+A /Users/barry/Projects/pysvn/Extension/Tests/testroot-01/export1.crlf/folder1/folder2/file8.txt
+A /Users/barry/Projects/pysvn/Extension/Tests/testroot-01/export1.crlf/folder3
+/Users/barry/Projects/pysvn/Extension/Tests/testroot-01/export1.native/file1.txt
+/Users/barry/Projects/pysvn/Extension/Tests/testroot-01/export1.native/file1b.txt
+/Users/barry/Projects/pysvn/Extension/Tests/testroot-01/export1.native/file2.txt
+/Users/barry/Projects/pysvn/Extension/Tests/testroot-01/export1.native/file3.txt
+/Users/barry/Projects/pysvn/Extension/Tests/testroot-01/export1.native/file4.txt
+/Users/barry/Projects/pysvn/Extension/Tests/testroot-01/export1.native/file5.txt
+/Users/barry/Projects/pysvn/Extension/Tests/testroot-01/export1.native/folder1/file7.txt
+/Users/barry/Projects/pysvn/Extension/Tests/testroot-01/export1.native/folder1/folder2/file8.txt
+/Users/barry/Projects/pysvn/Extension/Tests/testroot-01/export1.cr/file1.txt
+/Users/barry/Projects/pysvn/Extension/Tests/testroot-01/export1.cr/file1b.txt
+/Users/barry/Projects/pysvn/Extension/Tests/testroot-01/export1.cr/file2.txt
+/Users/barry/Projects/pysvn/Extension/Tests/testroot-01/export1.cr/file3.txt
+/Users/barry/Projects/pysvn/Extension/Tests/testroot-01/export1.cr/file4.txt
+/Users/barry/Projects/pysvn/Extension/Tests/testroot-01/export1.cr/file5.txt
+/Users/barry/Projects/pysvn/Extension/Tests/testroot-01/export1.cr/folder1/file7.txt
+/Users/barry/Projects/pysvn/Extension/Tests/testroot-01/export1.cr/folder1/folder2/file8.txt
+/Users/barry/Projects/pysvn/Extension/Tests/testroot-01/export1.lf/file1.txt
+/Users/barry/Projects/pysvn/Extension/Tests/testroot-01/export1.lf/file1b.txt
+/Users/barry/Projects/pysvn/Extension/Tests/testroot-01/export1.lf/file2.txt
+/Users/barry/Projects/pysvn/Extension/Tests/testroot-01/export1.lf/file3.txt
+/Users/barry/Projects/pysvn/Extension/Tests/testroot-01/export1.lf/file4.txt
+/Users/barry/Projects/pysvn/Extension/Tests/testroot-01/export1.lf/file5.txt
+/Users/barry/Projects/pysvn/Extension/Tests/testroot-01/export1.lf/folder1/file7.txt
+/Users/barry/Projects/pysvn/Extension/Tests/testroot-01/export1.lf/folder1/folder2/file8.txt
+/Users/barry/Projects/pysvn/Extension/Tests/testroot-01/export1.crlf/file1.txt
+/Users/barry/Projects/pysvn/Extension/Tests/testroot-01/export1.crlf/file1b.txt
+/Users/barry/Projects/pysvn/Extension/Tests/testroot-01/export1.crlf/file2.txt
+/Users/barry/Projects/pysvn/Extension/Tests/testroot-01/export1.crlf/file3.txt
+/Users/barry/Projects/pysvn/Extension/Tests/testroot-01/export1.crlf/file4.txt
+/Users/barry/Projects/pysvn/Extension/Tests/testroot-01/export1.crlf/file5.txt
+/Users/barry/Projects/pysvn/Extension/Tests/testroot-01/export1.crlf/folder1/file7.txt
+/Users/barry/Projects/pysvn/Extension/Tests/testroot-01/export1.crlf/folder1/folder2/file8.txt
 Info: Testing - info
-Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test
-Info: pysvn command: info /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test
-Path: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test
+Info: CWD: /Users/barry/Projects/pysvn/Extension/Tests/testroot-01/wc1/test
+Info: pysvn command: info /Users/barry/Projects/pysvn/Extension/Tests/testroot-01/wc2/test
+Path: /Users/barry/Projects/pysvn/Extension/Tests/testroot-01/wc2/test
 Name: .
-Url: file:///Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/repos/trunk/test
-Repository UUID: 26afa6a8-5039-46b3-bd95-8bf0b505475b
+Url: file:///Users/barry/Projects/pysvn/Extension/Tests/testroot-01/repos/trunk/test
+Repository UUID: 95ec2ced-dbf0-48d6-a60a-112f35543d36
 Revision: 6
 Node kind: directory
 Schedule: normal
 Last Changed Author: barry
 Last Changed Rev: 6
-Last Changed Date: 01-Apr-2018 09:55:52
-Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test
-Info: pysvn command: info /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file1.txt
-Path: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file1.txt
+Last Changed Date: 30-Jan-2022 14:13:15
+Info: CWD: /Users/barry/Projects/pysvn/Extension/Tests/testroot-01/wc1/test
+Info: pysvn command: info /Users/barry/Projects/pysvn/Extension/Tests/testroot-01/wc2/test/file1.txt
+Path: /Users/barry/Projects/pysvn/Extension/Tests/testroot-01/wc2/test/file1.txt
 Name: file1.txt
-Url: file:///Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/repos/trunk/test/file1.txt
-Repository UUID: 26afa6a8-5039-46b3-bd95-8bf0b505475b
+Url: file:///Users/barry/Projects/pysvn/Extension/Tests/testroot-01/repos/trunk/test/file1.txt
+Repository UUID: 95ec2ced-dbf0-48d6-a60a-112f35543d36
 Revision: 6
 Node kind: file
 Schedule: normal
 Last Changed Author: barry
 Last Changed Rev: 6
-Last Changed Date: 01-Apr-2018 09:55:52
-Text Last Updated: 01-Apr-2018 09:55:53
+Last Changed Date: 30-Jan-2022 14:13:15
+Text Last Updated: 30-Jan-2022 14:13:16
 Checksum: d17a5219a23a23ce7f363b75e09ec043
 Info: Testing - log
-Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test
-Info: pysvn command: log /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2
+Info: CWD: /Users/barry/Projects/pysvn/Extension/Tests/testroot-01/wc1/test
+Info: pysvn command: log /Users/barry/Projects/pysvn/Extension/Tests/testroot-01/wc2
 ------------------------------------------------------------
-rev 9: barry | 01-Apr-2018 09:55:57 | 1 lines
+rev 9: barry | 30-Jan-2022 14:13:20 | 1 lines
 copy test
 ------------------------------------------------------------
-rev 6: barry | 01-Apr-2018 09:55:52 | 1 lines
+rev 6: barry | 30-Jan-2022 14:13:15 | 1 lines
 commit modified file
 ------------------------------------------------------------
-rev 5: barry | 01-Apr-2018 09:55:50 | 1 lines
+rev 5: barry | 30-Jan-2022 14:13:13 | 1 lines
 commit delete file
 ------------------------------------------------------------
-rev 4: barry | 01-Apr-2018 09:55:49 | 1 lines
+rev 4: barry | 30-Jan-2022 14:13:12 | 1 lines
 commit mod file
 ------------------------------------------------------------
-rev 3: barry | 01-Apr-2018 09:55:48 | 1 lines
+rev 3: barry | 30-Jan-2022 14:13:11 | 1 lines
 commit added files
 ------------------------------------------------------------
-rev 2: barry | 01-Apr-2018 09:55:46 | 1 lines
+rev 2: barry | 30-Jan-2022 14:13:08 | 1 lines
 test-01 add test
 ------------------------------------------------------------
-rev 1: barry | 01-Apr-2018 09:55:45 | 1 lines
+rev 1: barry | 30-Jan-2022 14:13:08 | 1 lines
 test-01 add trunk
 ------------------------------------------------------------
 Info: Testing - ls
-Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test
-Info: pysvn command: ls file:///Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/repos/trunk/test
-file:///Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/repos/trunk/test/file1.txt
-file:///Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/repos/trunk/test/file1b.txt
-file:///Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/repos/trunk/test/file2.txt
-file:///Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/repos/trunk/test/file3.txt
-file:///Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/repos/trunk/test/file4.txt
-file:///Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/repos/trunk/test/file5.txt
-file:///Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/repos/trunk/test/folder1
-file:///Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/repos/trunk/test/folder3
-Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test
-Info: pysvn command: ls -v file:///Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/repos/trunk/test
-      6 barry          23 01-Apr-2018 09:55:52 file:///Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/repos/trunk/test/file1.txt
-      9 barry          23 01-Apr-2018 09:55:57 file:///Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/repos/trunk/test/file1b.txt
-      3 barry          16 01-Apr-2018 09:55:48 file:///Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/repos/trunk/test/file2.txt
-      3 barry          16 01-Apr-2018 09:55:48 file:///Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/repos/trunk/test/file3.txt
-      3 barry          16 01-Apr-2018 09:55:48 file:///Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/repos/trunk/test/file4.txt
-      3 barry          16 01-Apr-2018 09:55:48 file:///Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/repos/trunk/test/file5.txt
-      3 barry           - 01-Apr-2018 09:55:48 file:///Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/repos/trunk/test/folder1
-      3 barry           - 01-Apr-2018 09:55:48 file:///Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/repos/trunk/test/folder3
-Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test
-Info: pysvn command: ls /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test
-/Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file1.txt
-/Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file1b.txt
-/Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file2.txt
-/Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file3.txt
-/Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file4.txt
-/Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file5.txt
-/Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/folder1
-/Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/folder3
-Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test
-Info: pysvn command: ls -v /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test
-      6 barry          23 01-Apr-2018 09:55:52 /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file1.txt
-      9 barry          23 01-Apr-2018 09:55:57 /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file1b.txt
-      3 barry          16 01-Apr-2018 09:55:48 /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file2.txt
-      3 barry          16 01-Apr-2018 09:55:48 /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file3.txt
-      3 barry          16 01-Apr-2018 09:55:48 /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file4.txt
-      3 barry          16 01-Apr-2018 09:55:48 /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file5.txt
-      3 barry           - 01-Apr-2018 09:55:48 /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/folder1
-      3 barry           - 01-Apr-2018 09:55:48 /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/folder3
+Info: CWD: /Users/barry/Projects/pysvn/Extension/Tests/testroot-01/wc1/test
+Info: pysvn command: ls file:///Users/barry/Projects/pysvn/Extension/Tests/testroot-01/repos/trunk/test
+file:///Users/barry/Projects/pysvn/Extension/Tests/testroot-01/repos/trunk/test/file1.txt
+file:///Users/barry/Projects/pysvn/Extension/Tests/testroot-01/repos/trunk/test/file1b.txt
+file:///Users/barry/Projects/pysvn/Extension/Tests/testroot-01/repos/trunk/test/file2.txt
+file:///Users/barry/Projects/pysvn/Extension/Tests/testroot-01/repos/trunk/test/file3.txt
+file:///Users/barry/Projects/pysvn/Extension/Tests/testroot-01/repos/trunk/test/file4.txt
+file:///Users/barry/Projects/pysvn/Extension/Tests/testroot-01/repos/trunk/test/file5.txt
+file:///Users/barry/Projects/pysvn/Extension/Tests/testroot-01/repos/trunk/test/folder1
+file:///Users/barry/Projects/pysvn/Extension/Tests/testroot-01/repos/trunk/test/folder3
+Info: CWD: /Users/barry/Projects/pysvn/Extension/Tests/testroot-01/wc1/test
+Info: pysvn command: ls -v file:///Users/barry/Projects/pysvn/Extension/Tests/testroot-01/repos/trunk/test
+      6 barry          23 30-Jan-2022 14:13:15 file:///Users/barry/Projects/pysvn/Extension/Tests/testroot-01/repos/trunk/test/file1.txt
+      9 barry          23 30-Jan-2022 14:13:20 file:///Users/barry/Projects/pysvn/Extension/Tests/testroot-01/repos/trunk/test/file1b.txt
+      3 barry          16 30-Jan-2022 14:13:11 file:///Users/barry/Projects/pysvn/Extension/Tests/testroot-01/repos/trunk/test/file2.txt
+      3 barry          16 30-Jan-2022 14:13:11 file:///Users/barry/Projects/pysvn/Extension/Tests/testroot-01/repos/trunk/test/file3.txt
+      3 barry          16 30-Jan-2022 14:13:11 file:///Users/barry/Projects/pysvn/Extension/Tests/testroot-01/repos/trunk/test/file4.txt
+      3 barry          16 30-Jan-2022 14:13:11 file:///Users/barry/Projects/pysvn/Extension/Tests/testroot-01/repos/trunk/test/file5.txt
+      3 barry           - 30-Jan-2022 14:13:11 file:///Users/barry/Projects/pysvn/Extension/Tests/testroot-01/repos/trunk/test/folder1
+      3 barry           - 30-Jan-2022 14:13:11 file:///Users/barry/Projects/pysvn/Extension/Tests/testroot-01/repos/trunk/test/folder3
+Info: CWD: /Users/barry/Projects/pysvn/Extension/Tests/testroot-01/wc1/test
+Info: pysvn command: ls /Users/barry/Projects/pysvn/Extension/Tests/testroot-01/wc2/test
+/Users/barry/Projects/pysvn/Extension/Tests/testroot-01/wc2/test/file1.txt
+/Users/barry/Projects/pysvn/Extension/Tests/testroot-01/wc2/test/file1b.txt
+/Users/barry/Projects/pysvn/Extension/Tests/testroot-01/wc2/test/file2.txt
+/Users/barry/Projects/pysvn/Extension/Tests/testroot-01/wc2/test/file3.txt
+/Users/barry/Projects/pysvn/Extension/Tests/testroot-01/wc2/test/file4.txt
+/Users/barry/Projects/pysvn/Extension/Tests/testroot-01/wc2/test/file5.txt
+/Users/barry/Projects/pysvn/Extension/Tests/testroot-01/wc2/test/folder1
+/Users/barry/Projects/pysvn/Extension/Tests/testroot-01/wc2/test/folder3
+Info: CWD: /Users/barry/Projects/pysvn/Extension/Tests/testroot-01/wc1/test
+Info: pysvn command: ls -v /Users/barry/Projects/pysvn/Extension/Tests/testroot-01/wc2/test
+      6 barry          23 30-Jan-2022 14:13:15 /Users/barry/Projects/pysvn/Extension/Tests/testroot-01/wc2/test/file1.txt
+      9 barry          23 30-Jan-2022 14:13:20 /Users/barry/Projects/pysvn/Extension/Tests/testroot-01/wc2/test/file1b.txt
+      3 barry          16 30-Jan-2022 14:13:11 /Users/barry/Projects/pysvn/Extension/Tests/testroot-01/wc2/test/file2.txt
+      3 barry          16 30-Jan-2022 14:13:11 /Users/barry/Projects/pysvn/Extension/Tests/testroot-01/wc2/test/file3.txt
+      3 barry          16 30-Jan-2022 14:13:11 /Users/barry/Projects/pysvn/Extension/Tests/testroot-01/wc2/test/file4.txt
+      3 barry          16 30-Jan-2022 14:13:11 /Users/barry/Projects/pysvn/Extension/Tests/testroot-01/wc2/test/file5.txt
+      3 barry           - 30-Jan-2022 14:13:11 /Users/barry/Projects/pysvn/Extension/Tests/testroot-01/wc2/test/folder1
+      3 barry           - 30-Jan-2022 14:13:11 /Users/barry/Projects/pysvn/Extension/Tests/testroot-01/wc2/test/folder3
 Info: Testing - merge - done below
 Info: Testing - mkdir - done above
 Info: Testing - move
-Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test
-Info: pysvn command: move file:///Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/repos/trunk/test/file2.txt file:///Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/repos/trunk/test/file2b.txt
+Info: CWD: /Users/barry/Projects/pysvn/Extension/Tests/testroot-01/wc1/test
+Info: pysvn command: move file:///Users/barry/Projects/pysvn/Extension/Tests/testroot-01/repos/trunk/test/file2.txt file:///Users/barry/Projects/pysvn/Extension/Tests/testroot-01/repos/trunk/test/file2b.txt
 Log message
 --- -------
 commit_finalizing .
-Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test
-Info: pysvn command: move /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file3.txt /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file3b.txt
-A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file3b.txt
-D /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file3.txt
-Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test
-Info: pysvn command: checkin /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2 -m move wc test
-D /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file3.txt
-M /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file1b.txt
-commit_copied /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file3b.txt
+Info: CWD: /Users/barry/Projects/pysvn/Extension/Tests/testroot-01/wc1/test
+Info: pysvn command: move /Users/barry/Projects/pysvn/Extension/Tests/testroot-01/wc2/test/file3.txt /Users/barry/Projects/pysvn/Extension/Tests/testroot-01/wc2/test/file3b.txt
+A /Users/barry/Projects/pysvn/Extension/Tests/testroot-01/wc2/test/file3b.txt
+D /Users/barry/Projects/pysvn/Extension/Tests/testroot-01/wc2/test/file3.txt
+Info: CWD: /Users/barry/Projects/pysvn/Extension/Tests/testroot-01/wc1/test
+Info: pysvn command: checkin /Users/barry/Projects/pysvn/Extension/Tests/testroot-01/wc2 -m move wc test
+D /Users/barry/Projects/pysvn/Extension/Tests/testroot-01/wc2/test/file3.txt
+M /Users/barry/Projects/pysvn/Extension/Tests/testroot-01/wc2/test/file1b.txt
+commit_copied /Users/barry/Projects/pysvn/Extension/Tests/testroot-01/wc2/test/file3b.txt
 commit_finalizing .
 Revision 11
 Info: Testing - status
-Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test
-Info: pysvn command: checkin /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1 -m change wc1 for status -u to detect
-M /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test/file4.txt
+Info: CWD: /Users/barry/Projects/pysvn/Extension/Tests/testroot-01/wc1/test
+Info: pysvn command: checkin /Users/barry/Projects/pysvn/Extension/Tests/testroot-01/wc1 -m change wc1 for status -u to detect
+M /Users/barry/Projects/pysvn/Extension/Tests/testroot-01/wc1/test/file4.txt
 commit_finalizing .
 Revision 12
-Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test
-Info: pysvn command: status /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2
-Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test
-Info: pysvn command: status --verbose /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2
-               6      6 barry          /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2
-               6      6 barry          /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test
-               6      6 barry          /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file1.txt
-              11     11 barry          /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file1b.txt
-               6      3 barry          /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file2.txt
-              11     11 barry          /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file3b.txt
-               6      3 barry          /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file4.txt
-               6      3 barry          /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file5.txt
-               6      3 barry          /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/folder1
-               6      3 barry          /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/folder1/file7.txt
-               6      3 barry          /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/folder1/folder2
-               6      3 barry          /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/folder1/folder2/file8.txt
-               6      3 barry          /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/folder3
-Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test
-Info: pysvn command: status --show-updates /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2
-       M  /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test
-       D  /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file2.txt
-       A  /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file2b.txt
-       M  /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file4.txt
-Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test
-Info: pysvn command: status --show-updates --verbose /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2
-               6      6 barry          /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2
-       M       6      6 barry          /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test
-               6      6 barry          /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file1.txt
-              11     11 barry          /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file1b.txt
-       D       6      3 barry          /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file2.txt
-       A                               /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file2b.txt
-              11     11 barry          /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file3b.txt
-       M       6      3 barry          /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file4.txt
-               6      3 barry          /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file5.txt
-               6      3 barry          /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/folder1
-               6      3 barry          /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/folder1/file7.txt
-               6      3 barry          /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/folder1/folder2
-               6      3 barry          /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/folder1/folder2/file8.txt
-               6      3 barry          /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/folder3
-Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test
+Info: CWD: /Users/barry/Projects/pysvn/Extension/Tests/testroot-01/wc1/test
+Info: pysvn command: status /Users/barry/Projects/pysvn/Extension/Tests/testroot-01/wc2
+Info: CWD: /Users/barry/Projects/pysvn/Extension/Tests/testroot-01/wc1/test
+Info: pysvn command: status --verbose /Users/barry/Projects/pysvn/Extension/Tests/testroot-01/wc2
+               6      6 barry          /Users/barry/Projects/pysvn/Extension/Tests/testroot-01/wc2
+               6      6 barry          /Users/barry/Projects/pysvn/Extension/Tests/testroot-01/wc2/test
+               6      6 barry          /Users/barry/Projects/pysvn/Extension/Tests/testroot-01/wc2/test/file1.txt
+              11     11 barry          /Users/barry/Projects/pysvn/Extension/Tests/testroot-01/wc2/test/file1b.txt
+               6      3 barry          /Users/barry/Projects/pysvn/Extension/Tests/testroot-01/wc2/test/file2.txt
+              11     11 barry          /Users/barry/Projects/pysvn/Extension/Tests/testroot-01/wc2/test/file3b.txt
+               6      3 barry          /Users/barry/Projects/pysvn/Extension/Tests/testroot-01/wc2/test/file4.txt
+               6      3 barry          /Users/barry/Projects/pysvn/Extension/Tests/testroot-01/wc2/test/file5.txt
+               6      3 barry          /Users/barry/Projects/pysvn/Extension/Tests/testroot-01/wc2/test/folder1
+               6      3 barry          /Users/barry/Projects/pysvn/Extension/Tests/testroot-01/wc2/test/folder1/file7.txt
+               6      3 barry          /Users/barry/Projects/pysvn/Extension/Tests/testroot-01/wc2/test/folder1/folder2
+               6      3 barry          /Users/barry/Projects/pysvn/Extension/Tests/testroot-01/wc2/test/folder1/folder2/file8.txt
+               6      3 barry          /Users/barry/Projects/pysvn/Extension/Tests/testroot-01/wc2/test/folder3
+Info: CWD: /Users/barry/Projects/pysvn/Extension/Tests/testroot-01/wc1/test
+Info: pysvn command: status --show-updates /Users/barry/Projects/pysvn/Extension/Tests/testroot-01/wc2
+       M  /Users/barry/Projects/pysvn/Extension/Tests/testroot-01/wc2/test
+       D  /Users/barry/Projects/pysvn/Extension/Tests/testroot-01/wc2/test/file2.txt
+       A  /Users/barry/Projects/pysvn/Extension/Tests/testroot-01/wc2/test/file2b.txt
+       M  /Users/barry/Projects/pysvn/Extension/Tests/testroot-01/wc2/test/file4.txt
+Info: CWD: /Users/barry/Projects/pysvn/Extension/Tests/testroot-01/wc1/test
+Info: pysvn command: status --show-updates --verbose /Users/barry/Projects/pysvn/Extension/Tests/testroot-01/wc2
+               6      6 barry          /Users/barry/Projects/pysvn/Extension/Tests/testroot-01/wc2
+       M       6      6 barry          /Users/barry/Projects/pysvn/Extension/Tests/testroot-01/wc2/test
+               6      6 barry          /Users/barry/Projects/pysvn/Extension/Tests/testroot-01/wc2/test/file1.txt
+              11     11 barry          /Users/barry/Projects/pysvn/Extension/Tests/testroot-01/wc2/test/file1b.txt
+       D       6      3 barry          /Users/barry/Projects/pysvn/Extension/Tests/testroot-01/wc2/test/file2.txt
+       A                               /Users/barry/Projects/pysvn/Extension/Tests/testroot-01/wc2/test/file2b.txt
+              11     11 barry          /Users/barry/Projects/pysvn/Extension/Tests/testroot-01/wc2/test/file3b.txt
+       M       6      3 barry          /Users/barry/Projects/pysvn/Extension/Tests/testroot-01/wc2/test/file4.txt
+               6      3 barry          /Users/barry/Projects/pysvn/Extension/Tests/testroot-01/wc2/test/file5.txt
+               6      3 barry          /Users/barry/Projects/pysvn/Extension/Tests/testroot-01/wc2/test/folder1
+               6      3 barry          /Users/barry/Projects/pysvn/Extension/Tests/testroot-01/wc2/test/folder1/file7.txt
+               6      3 barry          /Users/barry/Projects/pysvn/Extension/Tests/testroot-01/wc2/test/folder1/folder2
+               6      3 barry          /Users/barry/Projects/pysvn/Extension/Tests/testroot-01/wc2/test/folder1/folder2/file8.txt
+               6      3 barry          /Users/barry/Projects/pysvn/Extension/Tests/testroot-01/wc2/test/folder3
+Info: CWD: /Users/barry/Projects/pysvn/Extension/Tests/testroot-01/wc1/test
 Info: pysvn command: update
-A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test/file1b.txt
-A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test/file2b.txt
-A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test/file3b.txt
-D /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test/file2.txt
-D /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test/file3.txt
-U /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1
-U /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test
-update_started /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test
+A /Users/barry/Projects/pysvn/Extension/Tests/testroot-01/wc1/test/file1b.txt
+A /Users/barry/Projects/pysvn/Extension/Tests/testroot-01/wc1/test/file2b.txt
+A /Users/barry/Projects/pysvn/Extension/Tests/testroot-01/wc1/test/file3b.txt
+D /Users/barry/Projects/pysvn/Extension/Tests/testroot-01/wc1/test/file2.txt
+D /Users/barry/Projects/pysvn/Extension/Tests/testroot-01/wc1/test/file3.txt
+U /Users/barry/Projects/pysvn/Extension/Tests/testroot-01/wc1
+U /Users/barry/Projects/pysvn/Extension/Tests/testroot-01/wc1/test
+update_started /Users/barry/Projects/pysvn/Extension/Tests/testroot-01/wc1/test
 Updated to revision 12
-Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test
-Info: pysvn command: status --show-updates /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2
-       M  /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test
-       D  /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file2.txt
-       A  /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file2b.txt
-       M  /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file4.txt
-Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test
-Info: pysvn command: status --show-updates --verbose /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2
-               6      6 barry          /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2
-       M       6      6 barry          /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test
-               6      6 barry          /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file1.txt
-              11     11 barry          /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file1b.txt
-       D       6      3 barry          /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file2.txt
-       A                               /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file2b.txt
-              11     11 barry          /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file3b.txt
-       M       6      3 barry          /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file4.txt
-               6      3 barry          /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file5.txt
-               6      3 barry          /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/folder1
-               6      3 barry          /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/folder1/file7.txt
-               6      3 barry          /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/folder1/folder2
-               6      3 barry          /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/folder1/folder2/file8.txt
-               6      3 barry          /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/folder3
-Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test
-Info: pysvn command: checkin /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2 -m prop change
+Info: CWD: /Users/barry/Projects/pysvn/Extension/Tests/testroot-01/wc1/test
+Info: pysvn command: status --show-updates /Users/barry/Projects/pysvn/Extension/Tests/testroot-01/wc2
+       M  /Users/barry/Projects/pysvn/Extension/Tests/testroot-01/wc2/test
+       D  /Users/barry/Projects/pysvn/Extension/Tests/testroot-01/wc2/test/file2.txt
+       A  /Users/barry/Projects/pysvn/Extension/Tests/testroot-01/wc2/test/file2b.txt
+       M  /Users/barry/Projects/pysvn/Extension/Tests/testroot-01/wc2/test/file4.txt
+Info: CWD: /Users/barry/Projects/pysvn/Extension/Tests/testroot-01/wc1/test
+Info: pysvn command: status --show-updates --verbose /Users/barry/Projects/pysvn/Extension/Tests/testroot-01/wc2
+               6      6 barry          /Users/barry/Projects/pysvn/Extension/Tests/testroot-01/wc2
+       M       6      6 barry          /Users/barry/Projects/pysvn/Extension/Tests/testroot-01/wc2/test
+               6      6 barry          /Users/barry/Projects/pysvn/Extension/Tests/testroot-01/wc2/test/file1.txt
+              11     11 barry          /Users/barry/Projects/pysvn/Extension/Tests/testroot-01/wc2/test/file1b.txt
+       D       6      3 barry          /Users/barry/Projects/pysvn/Extension/Tests/testroot-01/wc2/test/file2.txt
+       A                               /Users/barry/Projects/pysvn/Extension/Tests/testroot-01/wc2/test/file2b.txt
+              11     11 barry          /Users/barry/Projects/pysvn/Extension/Tests/testroot-01/wc2/test/file3b.txt
+       M       6      3 barry          /Users/barry/Projects/pysvn/Extension/Tests/testroot-01/wc2/test/file4.txt
+               6      3 barry          /Users/barry/Projects/pysvn/Extension/Tests/testroot-01/wc2/test/file5.txt
+               6      3 barry          /Users/barry/Projects/pysvn/Extension/Tests/testroot-01/wc2/test/folder1
+               6      3 barry          /Users/barry/Projects/pysvn/Extension/Tests/testroot-01/wc2/test/folder1/file7.txt
+               6      3 barry          /Users/barry/Projects/pysvn/Extension/Tests/testroot-01/wc2/test/folder1/folder2
+               6      3 barry          /Users/barry/Projects/pysvn/Extension/Tests/testroot-01/wc2/test/folder1/folder2/file8.txt
+               6      3 barry          /Users/barry/Projects/pysvn/Extension/Tests/testroot-01/wc2/test/folder3
+Info: CWD: /Users/barry/Projects/pysvn/Extension/Tests/testroot-01/wc1/test
+Info: pysvn command: checkin /Users/barry/Projects/pysvn/Extension/Tests/testroot-01/wc2 -m prop change
 Nothing to commit
 Info: Testing - propdel
-Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test
+Info: CWD: /Users/barry/Projects/pysvn/Extension/Tests/testroot-01/wc2/test
 Info: pysvn command: propset test:prop1 del_me file4.txt
-property_added /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file4.txt
-Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test
+property_added /Users/barry/Projects/pysvn/Extension/Tests/testroot-01/wc2/test/file4.txt
+Info: CWD: /Users/barry/Projects/pysvn/Extension/Tests/testroot-01/wc2/test
 Info: pysvn command: proplist -v file4.txt
 Properties on 'file4.txt':
   test:prop1: del_me
-Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test
+Info: CWD: /Users/barry/Projects/pysvn/Extension/Tests/testroot-01/wc2/test
 Info: pysvn command: propdel test:prop1 file4.txt
-property_deleted /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file4.txt
-Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test
+property_deleted /Users/barry/Projects/pysvn/Extension/Tests/testroot-01/wc2/test/file4.txt
+Info: CWD: /Users/barry/Projects/pysvn/Extension/Tests/testroot-01/wc2/test
 Info: pysvn command: proplist -v file4.txt
 Info: Testing - propget
-Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test
+Info: CWD: /Users/barry/Projects/pysvn/Extension/Tests/testroot-01/wc2/test
 Info: pysvn command: propset svn:eol-style native file4.txt
-property_added /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file4.txt
-Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test
+property_added /Users/barry/Projects/pysvn/Extension/Tests/testroot-01/wc2/test/file4.txt
+Info: CWD: /Users/barry/Projects/pysvn/Extension/Tests/testroot-01/wc2/test
 Info: pysvn command: propget svn:eol-style file4.txt
-/Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file4.txt: native
-Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test
+/Users/barry/Projects/pysvn/Extension/Tests/testroot-01/wc2/test/file4.txt: native
+Info: CWD: /Users/barry/Projects/pysvn/Extension/Tests/testroot-01/wc2/test
 Info: pysvn command: propget unknown file4.txt
 Info: Testing - proplist - see above
 Info: Testing - propset
-Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test
+Info: CWD: /Users/barry/Projects/pysvn/Extension/Tests/testroot-01/wc2/test
 Info: pysvn command: proplist -v file4.txt
 Properties on 'file4.txt':
   svn:eol-style: native
-Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test
+Info: CWD: /Users/barry/Projects/pysvn/Extension/Tests/testroot-01/wc2/test
 Info: pysvn command: propset svn:eol-style native file4.txt
-property_modified /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file4.txt
-Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test
+property_modified /Users/barry/Projects/pysvn/Extension/Tests/testroot-01/wc2/test/file4.txt
+Info: CWD: /Users/barry/Projects/pysvn/Extension/Tests/testroot-01/wc2/test
 Info: pysvn command: proplist -v file4.txt
 Properties on 'file4.txt':
   svn:eol-style: native
 Info: Testing - remove
-Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test
+Info: CWD: /Users/barry/Projects/pysvn/Extension/Tests/testroot-01/wc2/test
 Info: pysvn command: remove file5.txt
-D /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file5.txt
-Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test
+D /Users/barry/Projects/pysvn/Extension/Tests/testroot-01/wc2/test/file5.txt
+Info: CWD: /Users/barry/Projects/pysvn/Extension/Tests/testroot-01/wc2/test
 Info: pysvn command: status
  M     file4.txt
 D      file5.txt
 Info: Testing - resolved
-Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test
-Info: pysvn command: checkin /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test -m make a conflict part 1
-M /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test/file4.txt
+Info: CWD: /Users/barry/Projects/pysvn/Extension/Tests/testroot-01/wc2/test
+Info: pysvn command: checkin /Users/barry/Projects/pysvn/Extension/Tests/testroot-01/wc1/test -m make a conflict part 1
+M /Users/barry/Projects/pysvn/Extension/Tests/testroot-01/wc1/test/file4.txt
 commit_finalizing .
 Revision 13
-Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test
-Info: pysvn command: update /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test
+Info: CWD: /Users/barry/Projects/pysvn/Extension/Tests/testroot-01/wc2/test
+Info: pysvn command: update /Users/barry/Projects/pysvn/Extension/Tests/testroot-01/wc2/test
 callback_conflict_resolver
   action: <conflict_action.edit>
-  base_file: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file4.txt.r6
+  base_file: /Users/barry/Projects/pysvn/Extension/Tests/testroot-01/wc2/test/file4.txt.r6
   is_binary: False
   kind: <conflict_kind.text>
-  merged_file: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file4.txt
+  merged_file: /Users/barry/Projects/pysvn/Extension/Tests/testroot-01/wc2/test/file4.txt
   mime_type: None
-  my_file: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file4.txt.mine
+  my_file: /Users/barry/Projects/pysvn/Extension/Tests/testroot-01/wc2/test/file4.txt.mine
   node_kind: <node_kind.file>
   operation: <wc_operation.none>
-  path: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file4.txt
+  path: /Users/barry/Projects/pysvn/Extension/Tests/testroot-01/wc2/test/file4.txt
   property_name: None
   reason: <conflict_reason.edited>
-  src_left_version: {'node_kind': <node_kind.file>, 'path_in_repos': 'trunk/test/file4.txt', 'peg_rev': <Revision kind=number 6>, 'repos_url': 'file:///Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/repos'}
-  src_right_version: {'node_kind': <node_kind.file>, 'path_in_repos': 'trunk/test/file4.txt', 'peg_rev': <Revision kind=number 13>, 'repos_url': 'file:///Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/repos'}
-  their_file: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file4.txt.r13
-A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file2b.txt
-D /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file2.txt
-U /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2
-U /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test
-U /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file4.txt
-conflict_resolver_done /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file4.txt
-conflict_resolver_starting /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file4.txt
-update_started /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test
+  src_left_version: {'node_kind': <node_kind.file>, 'path_in_repos': 'trunk/test/file4.txt', 'peg_rev': <Revision kind=number 6>, 'repos_url': 'file:///Users/barry/Projects/pysvn/Extension/Tests/testroot-01/repos'}
+  src_right_version: {'node_kind': <node_kind.file>, 'path_in_repos': 'trunk/test/file4.txt', 'peg_rev': <Revision kind=number 13>, 'repos_url': 'file:///Users/barry/Projects/pysvn/Extension/Tests/testroot-01/repos'}
+  their_file: /Users/barry/Projects/pysvn/Extension/Tests/testroot-01/wc2/test/file4.txt.r13
+A /Users/barry/Projects/pysvn/Extension/Tests/testroot-01/wc2/test/file2b.txt
+D /Users/barry/Projects/pysvn/Extension/Tests/testroot-01/wc2/test/file2.txt
+U /Users/barry/Projects/pysvn/Extension/Tests/testroot-01/wc2
+U /Users/barry/Projects/pysvn/Extension/Tests/testroot-01/wc2/test
+U /Users/barry/Projects/pysvn/Extension/Tests/testroot-01/wc2/test/file4.txt
+conflict_resolver_done /Users/barry/Projects/pysvn/Extension/Tests/testroot-01/wc2/test/file4.txt
+conflict_resolver_starting /Users/barry/Projects/pysvn/Extension/Tests/testroot-01/wc2/test/file4.txt
+update_started /Users/barry/Projects/pysvn/Extension/Tests/testroot-01/wc2/test
 Updated to revision 13
-Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test
+Info: CWD: /Users/barry/Projects/pysvn/Extension/Tests/testroot-01/wc2/test
 Info: pysvn command: status
 CM     file4.txt
 ?      file4.txt.mine
 ?      file4.txt.r13
 ?      file4.txt.r6
 D      file5.txt
-Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test
-Info: Command: cp /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file4.txt.mine /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file4.txt
-Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test
-Info: pysvn command: resolved /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file4.txt
-R /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file4.txt
-conflict_resolver_done /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file4.txt
-conflict_resolver_starting /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file4.txt
-Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test
-Info: pysvn command: checkin /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file4.txt -m resolve a confict part 2
-M /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file4.txt
+Info: CWD: /Users/barry/Projects/pysvn/Extension/Tests/testroot-01/wc2/test
+Info: Command: cp /Users/barry/Projects/pysvn/Extension/Tests/testroot-01/wc2/test/file4.txt.mine /Users/barry/Projects/pysvn/Extension/Tests/testroot-01/wc2/test/file4.txt
+Info: CWD: /Users/barry/Projects/pysvn/Extension/Tests/testroot-01/wc2/test
+Info: pysvn command: resolved /Users/barry/Projects/pysvn/Extension/Tests/testroot-01/wc2/test/file4.txt
+R /Users/barry/Projects/pysvn/Extension/Tests/testroot-01/wc2/test/file4.txt
+conflict_resolver_done /Users/barry/Projects/pysvn/Extension/Tests/testroot-01/wc2/test/file4.txt
+conflict_resolver_starting /Users/barry/Projects/pysvn/Extension/Tests/testroot-01/wc2/test/file4.txt
+Info: CWD: /Users/barry/Projects/pysvn/Extension/Tests/testroot-01/wc2/test
+Info: pysvn command: checkin /Users/barry/Projects/pysvn/Extension/Tests/testroot-01/wc2/test/file4.txt -m resolve a confict part 2
+M /Users/barry/Projects/pysvn/Extension/Tests/testroot-01/wc2/test/file4.txt
 commit_finalizing .
 Revision 14
 Info: Testing - revert
-Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test
+Info: CWD: /Users/barry/Projects/pysvn/Extension/Tests/testroot-01/wc2/test
 Info: pysvn command: revert file5.txt
-R /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file5.txt
-Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test
+R /Users/barry/Projects/pysvn/Extension/Tests/testroot-01/wc2/test/file5.txt
+Info: CWD: /Users/barry/Projects/pysvn/Extension/Tests/testroot-01/wc2/test
 Info: pysvn command: status
 Info: Testing - revproplist
-Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test
-Info: pysvn command: revproplist file:///Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/repos/trunk
+Info: CWD: /Users/barry/Projects/pysvn/Extension/Tests/testroot-01/wc2/test
+Info: pysvn command: revproplist file:///Users/barry/Projects/pysvn/Extension/Tests/testroot-01/repos/trunk
 Revision: 14
 svn:author: barry
-svn:date: 2018-04-01T08:56:09.258530Z
+svn:date: 2022-01-30T14:13:32.212620Z
 svn:log: resolve a confict part 2
 Info: Testing - revpropget
-Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test
-Info: pysvn command: revpropget svn:log file:///Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/repos/trunk
+Info: CWD: /Users/barry/Projects/pysvn/Extension/Tests/testroot-01/wc2/test
+Info: pysvn command: revpropget svn:log file:///Users/barry/Projects/pysvn/Extension/Tests/testroot-01/repos/trunk
 Revision: 14
 svn:log: resolve a confict part 2
-Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test
-Info: pysvn command: revpropget no_such_prop file:///Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/repos/trunk
+Info: CWD: /Users/barry/Projects/pysvn/Extension/Tests/testroot-01/wc2/test
+Info: pysvn command: revpropget no_such_prop file:///Users/barry/Projects/pysvn/Extension/Tests/testroot-01/repos/trunk
 Revision: 14
 no_such_prop: None
 Info: Testing - revpropset
-Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test
-Info: pysvn command: revpropset svn:log Hello world file:///Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/repos/trunk
+Info: CWD: /Users/barry/Projects/pysvn/Extension/Tests/testroot-01/wc2/test
+Info: pysvn command: revpropset svn:log Hello world file:///Users/barry/Projects/pysvn/Extension/Tests/testroot-01/repos/trunk
 Repository has not been enabled to accept revision propchanges;
 ask the administrator to create a pre-revprop-change hook
 Info: Testing - revpropdel
-Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test
-Info: pysvn command: revpropdel svn:log file:///Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/repos/trunk
+Info: CWD: /Users/barry/Projects/pysvn/Extension/Tests/testroot-01/wc2/test
+Info: pysvn command: revpropdel svn:log file:///Users/barry/Projects/pysvn/Extension/Tests/testroot-01/repos/trunk
 Repository has not been enabled to accept revision propchanges;
 ask the administrator to create a pre-revprop-change hook
 Info: Testing - status - see above
 Info: Testing - relocate
-Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test
-Info: Command: mkdir /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/root
-Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test
-Info: Command: mv /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/repos /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/root
-Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test
-Info: pysvn command: info /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1
-Path: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1
+Info: CWD: /Users/barry/Projects/pysvn/Extension/Tests/testroot-01/wc2/test
+Info: Command: mkdir /Users/barry/Projects/pysvn/Extension/Tests/testroot-01/root
+Info: CWD: /Users/barry/Projects/pysvn/Extension/Tests/testroot-01/wc2/test
+Info: Command: mv /Users/barry/Projects/pysvn/Extension/Tests/testroot-01/repos /Users/barry/Projects/pysvn/Extension/Tests/testroot-01/root
+Info: CWD: /Users/barry/Projects/pysvn/Extension/Tests/testroot-01/wc2/test
+Info: pysvn command: info /Users/barry/Projects/pysvn/Extension/Tests/testroot-01/wc1
+Path: /Users/barry/Projects/pysvn/Extension/Tests/testroot-01/wc1
 Name: .
-Url: file:///Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/repos/trunk
-Repository UUID: 26afa6a8-5039-46b3-bd95-8bf0b505475b
+Url: file:///Users/barry/Projects/pysvn/Extension/Tests/testroot-01/repos/trunk
+Repository UUID: 95ec2ced-dbf0-48d6-a60a-112f35543d36
 Revision: 2
 Node kind: directory
 Schedule: normal
 Last Changed Author: barry
 Last Changed Rev: 2
-Last Changed Date: 01-Apr-2018 09:55:46
-Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test
-Info: pysvn command: relocate file:///Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/repos/trunk file:///Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/root/repos/trunk /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1
-Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test
-Info: pysvn command: info /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1
-Path: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1
+Last Changed Date: 30-Jan-2022 14:13:08
+Info: CWD: /Users/barry/Projects/pysvn/Extension/Tests/testroot-01/wc2/test
+Info: pysvn command: relocate file:///Users/barry/Projects/pysvn/Extension/Tests/testroot-01/repos/trunk file:///Users/barry/Projects/pysvn/Extension/Tests/testroot-01/root/repos/trunk /Users/barry/Projects/pysvn/Extension/Tests/testroot-01/wc1
+Info: CWD: /Users/barry/Projects/pysvn/Extension/Tests/testroot-01/wc2/test
+Info: pysvn command: info /Users/barry/Projects/pysvn/Extension/Tests/testroot-01/wc1
+Path: /Users/barry/Projects/pysvn/Extension/Tests/testroot-01/wc1
 Name: .
-Url: file:///Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/root/repos/trunk
-Repository UUID: 26afa6a8-5039-46b3-bd95-8bf0b505475b
+Url: file:///Users/barry/Projects/pysvn/Extension/Tests/testroot-01/root/repos/trunk
+Repository UUID: 95ec2ced-dbf0-48d6-a60a-112f35543d36
 Revision: 2
 Node kind: directory
 Schedule: normal
 Last Changed Author: barry
 Last Changed Rev: 2
-Last Changed Date: 01-Apr-2018 09:55:46
-Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test
-Info: pysvn command: info /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2
-Path: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2
+Last Changed Date: 30-Jan-2022 14:13:08
+Info: CWD: /Users/barry/Projects/pysvn/Extension/Tests/testroot-01/wc2/test
+Info: pysvn command: info /Users/barry/Projects/pysvn/Extension/Tests/testroot-01/wc2
+Path: /Users/barry/Projects/pysvn/Extension/Tests/testroot-01/wc2
 Name: .
-Url: file:///Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/repos/trunk
-Repository UUID: 26afa6a8-5039-46b3-bd95-8bf0b505475b
+Url: file:///Users/barry/Projects/pysvn/Extension/Tests/testroot-01/repos/trunk
+Repository UUID: 95ec2ced-dbf0-48d6-a60a-112f35543d36
 Revision: 6
 Node kind: directory
 Schedule: normal
 Last Changed Author: barry
 Last Changed Rev: 6
-Last Changed Date: 01-Apr-2018 09:55:52
-Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test
-Info: pysvn command: relocate file:///Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/repos/trunk file:///Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/root/repos/trunk /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2
-Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test
-Info: pysvn command: info /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2
-Path: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2
+Last Changed Date: 30-Jan-2022 14:13:15
+Info: CWD: /Users/barry/Projects/pysvn/Extension/Tests/testroot-01/wc2/test
+Info: pysvn command: relocate file:///Users/barry/Projects/pysvn/Extension/Tests/testroot-01/repos/trunk file:///Users/barry/Projects/pysvn/Extension/Tests/testroot-01/root/repos/trunk /Users/barry/Projects/pysvn/Extension/Tests/testroot-01/wc2
+Info: CWD: /Users/barry/Projects/pysvn/Extension/Tests/testroot-01/wc2/test
+Info: pysvn command: info /Users/barry/Projects/pysvn/Extension/Tests/testroot-01/wc2
+Path: /Users/barry/Projects/pysvn/Extension/Tests/testroot-01/wc2
 Name: .
-Url: file:///Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/root/repos/trunk
-Repository UUID: 26afa6a8-5039-46b3-bd95-8bf0b505475b
+Url: file:///Users/barry/Projects/pysvn/Extension/Tests/testroot-01/root/repos/trunk
+Repository UUID: 95ec2ced-dbf0-48d6-a60a-112f35543d36
 Revision: 6
 Node kind: directory
 Schedule: normal
 Last Changed Author: barry
 Last Changed Rev: 6
-Last Changed Date: 01-Apr-2018 09:55:52
+Last Changed Date: 30-Jan-2022 14:13:15
 Info: Testing - switch
-Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test
-Info: pysvn command: info /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2
-Path: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2
+Info: CWD: /Users/barry/Projects/pysvn/Extension/Tests/testroot-01/wc2/test
+Info: pysvn command: info /Users/barry/Projects/pysvn/Extension/Tests/testroot-01/wc2
+Path: /Users/barry/Projects/pysvn/Extension/Tests/testroot-01/wc2
 Name: .
-Url: file:///Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/root/repos/trunk
-Repository UUID: 26afa6a8-5039-46b3-bd95-8bf0b505475b
+Url: file:///Users/barry/Projects/pysvn/Extension/Tests/testroot-01/root/repos/trunk
+Repository UUID: 95ec2ced-dbf0-48d6-a60a-112f35543d36
 Revision: 6
 Node kind: directory
 Schedule: normal
 Last Changed Author: barry
 Last Changed Rev: 6
-Last Changed Date: 01-Apr-2018 09:55:52
-Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test
-Info: pysvn command: switch /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2 file:///Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/root/repos/tags/version1
-A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file2.txt
-A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file3.txt
-D /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file1b.txt
-D /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file2b.txt
-D /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file3b.txt
-U /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2
-U /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test
-U /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file4.txt
-Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test
-Info: pysvn command: info /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2
-Path: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2
+Last Changed Date: 30-Jan-2022 14:13:15
+Info: CWD: /Users/barry/Projects/pysvn/Extension/Tests/testroot-01/wc2/test
+Info: pysvn command: switch /Users/barry/Projects/pysvn/Extension/Tests/testroot-01/wc2 file:///Users/barry/Projects/pysvn/Extension/Tests/testroot-01/root/repos/tags/version1
+A /Users/barry/Projects/pysvn/Extension/Tests/testroot-01/wc2/test/file2.txt
+A /Users/barry/Projects/pysvn/Extension/Tests/testroot-01/wc2/test/file3.txt
+D /Users/barry/Projects/pysvn/Extension/Tests/testroot-01/wc2/test/file1b.txt
+D /Users/barry/Projects/pysvn/Extension/Tests/testroot-01/wc2/test/file2b.txt
+D /Users/barry/Projects/pysvn/Extension/Tests/testroot-01/wc2/test/file3b.txt
+U /Users/barry/Projects/pysvn/Extension/Tests/testroot-01/wc2
+U /Users/barry/Projects/pysvn/Extension/Tests/testroot-01/wc2/test
+U /Users/barry/Projects/pysvn/Extension/Tests/testroot-01/wc2/test/file4.txt
+Info: CWD: /Users/barry/Projects/pysvn/Extension/Tests/testroot-01/wc2/test
+Info: pysvn command: info /Users/barry/Projects/pysvn/Extension/Tests/testroot-01/wc2
+Path: /Users/barry/Projects/pysvn/Extension/Tests/testroot-01/wc2
 Name: .
-Url: file:///Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/root/repos/tags/version1
-Repository UUID: 26afa6a8-5039-46b3-bd95-8bf0b505475b
+Url: file:///Users/barry/Projects/pysvn/Extension/Tests/testroot-01/root/repos/tags/version1
+Repository UUID: 95ec2ced-dbf0-48d6-a60a-112f35543d36
 Revision: 14
 Node kind: directory
 Schedule: normal
 Last Changed Author: barry
 Last Changed Rev: 8
-Last Changed Date: 01-Apr-2018 09:55:56
+Last Changed Date: 30-Jan-2022 14:13:19
 Info: Testing - update - see above
 Info: Testing - merge
-Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test
-Info: pysvn command: checkout file:///Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/root/repos/trunk /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3
-A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test
-A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test/file1.txt
-A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test/file1b.txt
-A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test/file2b.txt
-A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test/file3b.txt
-A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test/file4.txt
-A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test/file5.txt
-A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test/folder1
-A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test/folder1/file7.txt
-A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test/folder1/folder2
-A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test/folder1/folder2/file8.txt
-A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test/folder3
-U /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3
-update_started /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3
+Info: CWD: /Users/barry/Projects/pysvn/Extension/Tests/testroot-01/wc2/test
+Info: pysvn command: checkout file:///Users/barry/Projects/pysvn/Extension/Tests/testroot-01/root/repos/trunk /Users/barry/Projects/pysvn/Extension/Tests/testroot-01/wc3
+A /Users/barry/Projects/pysvn/Extension/Tests/testroot-01/wc3/test
+A /Users/barry/Projects/pysvn/Extension/Tests/testroot-01/wc3/test/file1.txt
+A /Users/barry/Projects/pysvn/Extension/Tests/testroot-01/wc3/test/file1b.txt
+A /Users/barry/Projects/pysvn/Extension/Tests/testroot-01/wc3/test/file2b.txt
+A /Users/barry/Projects/pysvn/Extension/Tests/testroot-01/wc3/test/file3b.txt
+A /Users/barry/Projects/pysvn/Extension/Tests/testroot-01/wc3/test/file4.txt
+A /Users/barry/Projects/pysvn/Extension/Tests/testroot-01/wc3/test/file5.txt
+A /Users/barry/Projects/pysvn/Extension/Tests/testroot-01/wc3/test/folder1
+A /Users/barry/Projects/pysvn/Extension/Tests/testroot-01/wc3/test/folder1/file7.txt
+A /Users/barry/Projects/pysvn/Extension/Tests/testroot-01/wc3/test/folder1/folder2
+A /Users/barry/Projects/pysvn/Extension/Tests/testroot-01/wc3/test/folder1/folder2/file8.txt
+A /Users/barry/Projects/pysvn/Extension/Tests/testroot-01/wc3/test/folder3
+U /Users/barry/Projects/pysvn/Extension/Tests/testroot-01/wc3
+update_started /Users/barry/Projects/pysvn/Extension/Tests/testroot-01/wc3
 Checked out revision 14
-Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test
-Info: Command: cd /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test
-Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test
+Info: CWD: /Users/barry/Projects/pysvn/Extension/Tests/testroot-01/wc2/test
+Info: Command: cd /Users/barry/Projects/pysvn/Extension/Tests/testroot-01/wc3/test
+Info: CWD: /Users/barry/Projects/pysvn/Extension/Tests/testroot-01/wc3/test
 Info: pysvn command: add file-merge-1.txt
-A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test/file-merge-1.txt
-Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test
+A /Users/barry/Projects/pysvn/Extension/Tests/testroot-01/wc3/test/file-merge-1.txt
+Info: CWD: /Users/barry/Projects/pysvn/Extension/Tests/testroot-01/wc3/test
 Info: pysvn command: add file-merge-2.txt
-A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test/file-merge-2.txt
-Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test
+A /Users/barry/Projects/pysvn/Extension/Tests/testroot-01/wc3/test/file-merge-2.txt
+Info: CWD: /Users/barry/Projects/pysvn/Extension/Tests/testroot-01/wc3/test
 Info: pysvn command: commit -m add test merge files .
-A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test/file-merge-1.txt
-A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test/file-merge-2.txt
+A /Users/barry/Projects/pysvn/Extension/Tests/testroot-01/wc3/test/file-merge-1.txt
+A /Users/barry/Projects/pysvn/Extension/Tests/testroot-01/wc3/test/file-merge-2.txt
 commit_finalizing .
 Revision 15
-Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test
-Info: pysvn command: copy file:///Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/root/repos/trunk/test file:///Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/root/repos/trunk/test-branch
+Info: CWD: /Users/barry/Projects/pysvn/Extension/Tests/testroot-01/wc3/test
+Info: pysvn command: copy file:///Users/barry/Projects/pysvn/Extension/Tests/testroot-01/root/repos/trunk/test file:///Users/barry/Projects/pysvn/Extension/Tests/testroot-01/root/repos/trunk/test-branch
 Log message
 --- -------
 commit_finalizing .
-Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test
-Info: pysvn command: update /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3
-A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test-branch
-A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test-branch/file-merge-1.txt
-A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test-branch/file-merge-2.txt
-A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test-branch/file1.txt
-A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test-branch/file1b.txt
-A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test-branch/file2b.txt
-A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test-branch/file3b.txt
-A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test-branch/file4.txt
-A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test-branch/file5.txt
-A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test-branch/folder1
-A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test-branch/folder1/file7.txt
-A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test-branch/folder1/folder2
-A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test-branch/folder1/folder2/file8.txt
-A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test-branch/folder3
-U /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3
-update_started /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3
+Info: CWD: /Users/barry/Projects/pysvn/Extension/Tests/testroot-01/wc3/test
+Info: pysvn command: update /Users/barry/Projects/pysvn/Extension/Tests/testroot-01/wc3
+A /Users/barry/Projects/pysvn/Extension/Tests/testroot-01/wc3/test-branch
+A /Users/barry/Projects/pysvn/Extension/Tests/testroot-01/wc3/test-branch/file-merge-1.txt
+A /Users/barry/Projects/pysvn/Extension/Tests/testroot-01/wc3/test-branch/file-merge-2.txt
+A /Users/barry/Projects/pysvn/Extension/Tests/testroot-01/wc3/test-branch/file1.txt
+A /Users/barry/Projects/pysvn/Extension/Tests/testroot-01/wc3/test-branch/file1b.txt
+A /Users/barry/Projects/pysvn/Extension/Tests/testroot-01/wc3/test-branch/file2b.txt
+A /Users/barry/Projects/pysvn/Extension/Tests/testroot-01/wc3/test-branch/file3b.txt
+A /Users/barry/Projects/pysvn/Extension/Tests/testroot-01/wc3/test-branch/file4.txt
+A /Users/barry/Projects/pysvn/Extension/Tests/testroot-01/wc3/test-branch/file5.txt
+A /Users/barry/Projects/pysvn/Extension/Tests/testroot-01/wc3/test-branch/folder1
+A /Users/barry/Projects/pysvn/Extension/Tests/testroot-01/wc3/test-branch/folder1/file7.txt
+A /Users/barry/Projects/pysvn/Extension/Tests/testroot-01/wc3/test-branch/folder1/folder2
+A /Users/barry/Projects/pysvn/Extension/Tests/testroot-01/wc3/test-branch/folder1/folder2/file8.txt
+A /Users/barry/Projects/pysvn/Extension/Tests/testroot-01/wc3/test-branch/folder3
+U /Users/barry/Projects/pysvn/Extension/Tests/testroot-01/wc3
+update_started /Users/barry/Projects/pysvn/Extension/Tests/testroot-01/wc3
 Updated to revision 16
-Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test
+Info: CWD: /Users/barry/Projects/pysvn/Extension/Tests/testroot-01/wc3/test
 Info: pysvn command: add file-merge-3.txt
-A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test/file-merge-3.txt
-Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test
+A /Users/barry/Projects/pysvn/Extension/Tests/testroot-01/wc3/test/file-merge-3.txt
+Info: CWD: /Users/barry/Projects/pysvn/Extension/Tests/testroot-01/wc3/test
 Info: pysvn command: rm file-merge-1.txt
-D /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test/file-merge-1.txt
-Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test
+D /Users/barry/Projects/pysvn/Extension/Tests/testroot-01/wc3/test/file-merge-1.txt
+Info: CWD: /Users/barry/Projects/pysvn/Extension/Tests/testroot-01/wc3/test
 Info: pysvn command: commit -m change test merge files .
-A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test/file-merge-3.txt
-D /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test/file-merge-1.txt
-M /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test/file-merge-2.txt
+A /Users/barry/Projects/pysvn/Extension/Tests/testroot-01/wc3/test/file-merge-3.txt
+D /Users/barry/Projects/pysvn/Extension/Tests/testroot-01/wc3/test/file-merge-1.txt
+M /Users/barry/Projects/pysvn/Extension/Tests/testroot-01/wc3/test/file-merge-2.txt
 commit_finalizing .
 Revision 17
-Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test
-Info: pysvn command: merge --dry-run --revision 16:17 file:///Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/root/repos/trunk/test /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test-branch
-A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test-branch/file-merge-3.txt
-D /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test-branch/file-merge-1.txt
-U /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test-branch/file-merge-2.txt
-U /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test-branch/file-merge-2.txt
-merge_begin /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test-branch
-merge_completed /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test-branch
-merge_elide_info /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test-branch/file-merge-2.txt
-merge_record_info /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test-branch
-merge_record_info /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test-branch/file-merge-2.txt
-merge_record_info_begin /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test-branch
-merge_record_info_begin /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test-branch/file-merge-2.txt
-Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test
-Info: pysvn command: merge --revision 16:17 file:///Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/root/repos/trunk/test /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test-branch
-merge_completed /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test-branch
-Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test
-Info: pysvn command: status /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test-branch
- M     /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test-branch
-D      /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test-branch/file-merge-1.txt
-M      /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test-branch/file-merge-2.txt
-A  +   /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test-branch/file-merge-3.txt
-Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test
-Info: pysvn command: diff /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test-branch
-Index: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test-branch/file-merge-1.txt
+Info: CWD: /Users/barry/Projects/pysvn/Extension/Tests/testroot-01/wc3/test
+Info: pysvn command: merge --dry-run --revision 16:17 file:///Users/barry/Projects/pysvn/Extension/Tests/testroot-01/root/repos/trunk/test /Users/barry/Projects/pysvn/Extension/Tests/testroot-01/wc3/test-branch
+A /Users/barry/Projects/pysvn/Extension/Tests/testroot-01/wc3/test-branch/file-merge-3.txt
+D /Users/barry/Projects/pysvn/Extension/Tests/testroot-01/wc3/test-branch/file-merge-1.txt
+U /Users/barry/Projects/pysvn/Extension/Tests/testroot-01/wc3/test-branch/file-merge-2.txt
+U /Users/barry/Projects/pysvn/Extension/Tests/testroot-01/wc3/test-branch/file-merge-2.txt
+merge_begin /Users/barry/Projects/pysvn/Extension/Tests/testroot-01/wc3/test-branch
+merge_completed /Users/barry/Projects/pysvn/Extension/Tests/testroot-01/wc3/test-branch
+merge_elide_info /Users/barry/Projects/pysvn/Extension/Tests/testroot-01/wc3/test-branch/file-merge-2.txt
+merge_record_info /Users/barry/Projects/pysvn/Extension/Tests/testroot-01/wc3/test-branch
+merge_record_info /Users/barry/Projects/pysvn/Extension/Tests/testroot-01/wc3/test-branch/file-merge-2.txt
+merge_record_info_begin /Users/barry/Projects/pysvn/Extension/Tests/testroot-01/wc3/test-branch
+merge_record_info_begin /Users/barry/Projects/pysvn/Extension/Tests/testroot-01/wc3/test-branch/file-merge-2.txt
+Info: CWD: /Users/barry/Projects/pysvn/Extension/Tests/testroot-01/wc3/test
+Info: pysvn command: merge --revision 16:17 file:///Users/barry/Projects/pysvn/Extension/Tests/testroot-01/root/repos/trunk/test /Users/barry/Projects/pysvn/Extension/Tests/testroot-01/wc3/test-branch
+merge_completed /Users/barry/Projects/pysvn/Extension/Tests/testroot-01/wc3/test-branch
+Info: CWD: /Users/barry/Projects/pysvn/Extension/Tests/testroot-01/wc3/test
+Info: pysvn command: status /Users/barry/Projects/pysvn/Extension/Tests/testroot-01/wc3/test-branch
+ M     /Users/barry/Projects/pysvn/Extension/Tests/testroot-01/wc3/test-branch
+D      /Users/barry/Projects/pysvn/Extension/Tests/testroot-01/wc3/test-branch/file-merge-1.txt
+M      /Users/barry/Projects/pysvn/Extension/Tests/testroot-01/wc3/test-branch/file-merge-2.txt
+A  +   /Users/barry/Projects/pysvn/Extension/Tests/testroot-01/wc3/test-branch/file-merge-3.txt
+Info: CWD: /Users/barry/Projects/pysvn/Extension/Tests/testroot-01/wc3/test
+Info: pysvn command: diff /Users/barry/Projects/pysvn/Extension/Tests/testroot-01/wc3/test-branch
+Index: /Users/barry/Projects/pysvn/Extension/Tests/testroot-01/wc3/test-branch/file-merge-1.txt
 ===================================================================
---- /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test-branch/file-merge-1.txt	(revision 16)
-+++ /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test-branch/file-merge-1.txt	(nonexistent)
+--- /Users/barry/Projects/pysvn/Extension/Tests/testroot-01/wc3/test-branch/file-merge-1.txt	(revision 16)
++++ /Users/barry/Projects/pysvn/Extension/Tests/testroot-01/wc3/test-branch/file-merge-1.txt	(nonexistent)
 @@ -1 +0,0 @@
 -test add file merge 1
-Index: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test-branch/file-merge-2.txt
+Index: /Users/barry/Projects/pysvn/Extension/Tests/testroot-01/wc3/test-branch/file-merge-2.txt
 ===================================================================
---- /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test-branch/file-merge-2.txt	(revision 16)
-+++ /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test-branch/file-merge-2.txt	(working copy)
+--- /Users/barry/Projects/pysvn/Extension/Tests/testroot-01/wc3/test-branch/file-merge-2.txt	(revision 16)
++++ /Users/barry/Projects/pysvn/Extension/Tests/testroot-01/wc3/test-branch/file-merge-2.txt	(working copy)
 @@ -1 +1,2 @@
  test add file merge 2
 +modify merge 2
-Index: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test-branch/file-merge-3.txt
+Index: /Users/barry/Projects/pysvn/Extension/Tests/testroot-01/wc3/test-branch/file-merge-3.txt
 ===================================================================
-Index: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test-branch
+Index: /Users/barry/Projects/pysvn/Extension/Tests/testroot-01/wc3/test-branch
 ===================================================================
---- /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test-branch	(revision 16)
-+++ /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test-branch	(working copy)
+--- /Users/barry/Projects/pysvn/Extension/Tests/testroot-01/wc3/test-branch	(revision 16)
++++ /Users/barry/Projects/pysvn/Extension/Tests/testroot-01/wc3/test-branch	(working copy)
 
-Property changes on: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test-branch
+Property changes on: /Users/barry/Projects/pysvn/Extension/Tests/testroot-01/wc3/test-branch
 ___________________________________________________________________
 Added: svn:mergeinfo
 ## -0,0 +0,1 ##
    Merged /trunk/test:r17
 
-Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test
-Info: Command: /usr/local/bin/python3.5 /Users/barry/wc/svn/pysvn/Extension/Tests/test_01_set_get_tests.py /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/configdir
+Info: CWD: /Users/barry/Projects/pysvn/Extension/Tests/testroot-01/wc3/test
+Info: Command: /usr/local/bin/python3.7 /Users/barry/Projects/pysvn/Extension/Tests/test_01_set_get_tests.py /Users/barry/Projects/pysvn/Extension/Tests/testroot-01/configdir
 Info: test_01_set_get_tests start
 Info: test_01_set_get_tests import pysvn
-Info: test_01_set_get_tests pysvn.Client( /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/configdir )
+Info: test_01_set_get_tests pysvn.Client( /Users/barry/Projects/pysvn/Extension/Tests/testroot-01/configdir )
 Info: Initial values
 Info: get_auth_cache() => 1
 Info: get_auto_props() => 0
@@ -843,92 +856,92 @@ Info: get_store_passwords() => 1
 Info: test_01_set_get_tests dealloc Client()
 Info: test_01_set_get_tests done
 Info: Testing - import
-Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test
-Info: pysvn command: mkdir file:///Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/root/repos/trunk/test/import -m test-01 add import
+Info: CWD: /Users/barry/Projects/pysvn/Extension/Tests/testroot-01/wc3/test
+Info: pysvn command: mkdir file:///Users/barry/Projects/pysvn/Extension/Tests/testroot-01/root/repos/trunk/test/import -m test-01 add import
 commit_finalizing .
-Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test
-Info: pysvn command: import --message no spaces /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/tmp/import1.txt file:///Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/root/repos/trunk/test/import/import-file1.txt
-A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/tmp/import1.txt
+Info: CWD: /Users/barry/Projects/pysvn/Extension/Tests/testroot-01/wc3/test
+Info: pysvn command: import --message no spaces /Users/barry/Projects/pysvn/Extension/Tests/testroot-01/tmp/import1.txt file:///Users/barry/Projects/pysvn/Extension/Tests/testroot-01/root/repos/trunk/test/import/import-file1.txt
+A /Users/barry/Projects/pysvn/Extension/Tests/testroot-01/tmp/import1.txt
 commit_finalizing .
-Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test
-Info: pysvn command: import --message space in url /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/tmp/import1.txt file:///Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/root/repos/trunk/test/import/import file1A.txt
-A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/tmp/import1.txt
+Info: CWD: /Users/barry/Projects/pysvn/Extension/Tests/testroot-01/wc3/test
+Info: pysvn command: import --message space in url /Users/barry/Projects/pysvn/Extension/Tests/testroot-01/tmp/import1.txt file:///Users/barry/Projects/pysvn/Extension/Tests/testroot-01/root/repos/trunk/test/import/import file1A.txt
+A /Users/barry/Projects/pysvn/Extension/Tests/testroot-01/tmp/import1.txt
 commit_finalizing .
-Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test
-Info: pysvn command: import --message %20 in url /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/tmp/import1.txt file:///Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/root/repos/trunk/test/import/import%20file1B.txt
-A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/tmp/import1.txt
+Info: CWD: /Users/barry/Projects/pysvn/Extension/Tests/testroot-01/wc3/test
+Info: pysvn command: import --message %20 in url /Users/barry/Projects/pysvn/Extension/Tests/testroot-01/tmp/import1.txt file:///Users/barry/Projects/pysvn/Extension/Tests/testroot-01/root/repos/trunk/test/import/import%20file1B.txt
+A /Users/barry/Projects/pysvn/Extension/Tests/testroot-01/tmp/import1.txt
 commit_finalizing .
-Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test
-Info: pysvn command: import --message space in file, none in url /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/tmp/import 2.txt file:///Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/root/repos/trunk/test/import/import-file2.txt
-A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/tmp/import 2.txt
+Info: CWD: /Users/barry/Projects/pysvn/Extension/Tests/testroot-01/wc3/test
+Info: pysvn command: import --message space in file, none in url /Users/barry/Projects/pysvn/Extension/Tests/testroot-01/tmp/import 2.txt file:///Users/barry/Projects/pysvn/Extension/Tests/testroot-01/root/repos/trunk/test/import/import-file2.txt
+A /Users/barry/Projects/pysvn/Extension/Tests/testroot-01/tmp/import 2.txt
 commit_finalizing .
-Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test
-Info: pysvn command: import --message space in file, space in url /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/tmp/import 2.txt file:///Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/root/repos/trunk/test/import/import file2A.txt
-A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/tmp/import 2.txt
+Info: CWD: /Users/barry/Projects/pysvn/Extension/Tests/testroot-01/wc3/test
+Info: pysvn command: import --message space in file, space in url /Users/barry/Projects/pysvn/Extension/Tests/testroot-01/tmp/import 2.txt file:///Users/barry/Projects/pysvn/Extension/Tests/testroot-01/root/repos/trunk/test/import/import file2A.txt
+A /Users/barry/Projects/pysvn/Extension/Tests/testroot-01/tmp/import 2.txt
 commit_finalizing .
-Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test
-Info: pysvn command: import --message space in file, %20 in url /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/tmp/import 2.txt file:///Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/root/repos/trunk/test/import/import%20file2B.txt
-A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/tmp/import 2.txt
+Info: CWD: /Users/barry/Projects/pysvn/Extension/Tests/testroot-01/wc3/test
+Info: pysvn command: import --message space in file, %20 in url /Users/barry/Projects/pysvn/Extension/Tests/testroot-01/tmp/import 2.txt file:///Users/barry/Projects/pysvn/Extension/Tests/testroot-01/root/repos/trunk/test/import/import%20file2B.txt
+A /Users/barry/Projects/pysvn/Extension/Tests/testroot-01/tmp/import 2.txt
 commit_finalizing .
-Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test
-Info: pysvn command: update /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1
-A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test-branch
-A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test-branch/file-merge-1.txt
-A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test-branch/file-merge-2.txt
-A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test-branch/file1.txt
-A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test-branch/file1b.txt
-A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test-branch/file2b.txt
-A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test-branch/file3b.txt
-A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test-branch/file4.txt
-A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test-branch/file5.txt
-A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test-branch/folder1
-A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test-branch/folder1/file7.txt
-A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test-branch/folder1/folder2
-A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test-branch/folder1/folder2/file8.txt
-A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test-branch/folder3
-A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test/file-merge-2.txt
-A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test/file-merge-3.txt
-A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test/import
-A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test/import/import file1A.txt
-A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test/import/import file1B.txt
-A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test/import/import file2A.txt
-A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test/import/import file2B.txt
-A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test/import/import-file1.txt
-A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test/import/import-file2.txt
-U /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1
-U /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test
-U /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test/file4.txt
-update_started /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1
+Info: CWD: /Users/barry/Projects/pysvn/Extension/Tests/testroot-01/wc3/test
+Info: pysvn command: update /Users/barry/Projects/pysvn/Extension/Tests/testroot-01/wc1
+A /Users/barry/Projects/pysvn/Extension/Tests/testroot-01/wc1/test-branch
+A /Users/barry/Projects/pysvn/Extension/Tests/testroot-01/wc1/test-branch/file-merge-1.txt
+A /Users/barry/Projects/pysvn/Extension/Tests/testroot-01/wc1/test-branch/file-merge-2.txt
+A /Users/barry/Projects/pysvn/Extension/Tests/testroot-01/wc1/test-branch/file1.txt
+A /Users/barry/Projects/pysvn/Extension/Tests/testroot-01/wc1/test-branch/file1b.txt
+A /Users/barry/Projects/pysvn/Extension/Tests/testroot-01/wc1/test-branch/file2b.txt
+A /Users/barry/Projects/pysvn/Extension/Tests/testroot-01/wc1/test-branch/file3b.txt
+A /Users/barry/Projects/pysvn/Extension/Tests/testroot-01/wc1/test-branch/file4.txt
+A /Users/barry/Projects/pysvn/Extension/Tests/testroot-01/wc1/test-branch/file5.txt
+A /Users/barry/Projects/pysvn/Extension/Tests/testroot-01/wc1/test-branch/folder1
+A /Users/barry/Projects/pysvn/Extension/Tests/testroot-01/wc1/test-branch/folder1/file7.txt
+A /Users/barry/Projects/pysvn/Extension/Tests/testroot-01/wc1/test-branch/folder1/folder2
+A /Users/barry/Projects/pysvn/Extension/Tests/testroot-01/wc1/test-branch/folder1/folder2/file8.txt
+A /Users/barry/Projects/pysvn/Extension/Tests/testroot-01/wc1/test-branch/folder3
+A /Users/barry/Projects/pysvn/Extension/Tests/testroot-01/wc1/test/file-merge-2.txt
+A /Users/barry/Projects/pysvn/Extension/Tests/testroot-01/wc1/test/file-merge-3.txt
+A /Users/barry/Projects/pysvn/Extension/Tests/testroot-01/wc1/test/import
+A /Users/barry/Projects/pysvn/Extension/Tests/testroot-01/wc1/test/import/import file1A.txt
+A /Users/barry/Projects/pysvn/Extension/Tests/testroot-01/wc1/test/import/import file1B.txt
+A /Users/barry/Projects/pysvn/Extension/Tests/testroot-01/wc1/test/import/import file2A.txt
+A /Users/barry/Projects/pysvn/Extension/Tests/testroot-01/wc1/test/import/import file2B.txt
+A /Users/barry/Projects/pysvn/Extension/Tests/testroot-01/wc1/test/import/import-file1.txt
+A /Users/barry/Projects/pysvn/Extension/Tests/testroot-01/wc1/test/import/import-file2.txt
+U /Users/barry/Projects/pysvn/Extension/Tests/testroot-01/wc1
+U /Users/barry/Projects/pysvn/Extension/Tests/testroot-01/wc1/test
+U /Users/barry/Projects/pysvn/Extension/Tests/testroot-01/wc1/test/file4.txt
+update_started /Users/barry/Projects/pysvn/Extension/Tests/testroot-01/wc1
 Updated to revision 24
-Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test
-Info: pysvn command: log --limit 6 --verbose /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1
+Info: CWD: /Users/barry/Projects/pysvn/Extension/Tests/testroot-01/wc3/test
+Info: pysvn command: log --limit 6 --verbose /Users/barry/Projects/pysvn/Extension/Tests/testroot-01/wc1
 ------------------------------------------------------------
-rev 24: barry | 01-Apr-2018 09:56:21 | 1 lines
+rev 24: barry | 30-Jan-2022 14:13:42 | 1 lines
 Changed paths:
   A /trunk/test/import/import file2B.txt
 space in file, %20 in url
 ------------------------------------------------------------
-rev 23: barry | 01-Apr-2018 09:56:21 | 1 lines
+rev 23: barry | 30-Jan-2022 14:13:42 | 1 lines
 Changed paths:
   A /trunk/test/import/import file2A.txt
 space in file, space in url
 ------------------------------------------------------------
-rev 22: barry | 01-Apr-2018 09:56:20 | 1 lines
+rev 22: barry | 30-Jan-2022 14:13:42 | 1 lines
 Changed paths:
   A /trunk/test/import/import-file2.txt
 space in file, none in url
 ------------------------------------------------------------
-rev 21: barry | 01-Apr-2018 09:56:20 | 1 lines
+rev 21: barry | 30-Jan-2022 14:13:42 | 1 lines
 Changed paths:
   A /trunk/test/import/import file1B.txt
 %20 in url
 ------------------------------------------------------------
-rev 20: barry | 01-Apr-2018 09:56:20 | 1 lines
+rev 20: barry | 30-Jan-2022 14:13:42 | 1 lines
 Changed paths:
   A /trunk/test/import/import file1A.txt
 space in url
 ------------------------------------------------------------
-rev 19: barry | 01-Apr-2018 09:56:20 | 1 lines
+rev 19: barry | 30-Jan-2022 14:13:41 | 1 lines
 Changed paths:
   A /trunk/test/import/import-file1.txt
 no spaces
diff --git a/Tests/test-01.unix.known_good-py3-svn1.14.log b/Tests/test-01.unix.known_good-py3-svn1.14.log
index f6be616..0cf52a4 100644
--- a/Tests/test-01.unix.known_good-py3-svn1.14.log
+++ b/Tests/test-01.unix.known_good-py3-svn1.14.log
@@ -1,822 +1,835 @@
-WorkDir: /Users/barry/wc/svn/pysvn/Extension
-PYTHON: /usr/local/bin/python3.5
+WorkDir: /home/barry/Projects/pysvn/Extension
+PYTHON: /usr/bin/python
 Username: barry
-Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests
+Info: CWD: /home/barry/Projects/pysvn/Extension/Tests
 Info: Command: mkdir testroot-01
-Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests
+Info: CWD: /home/barry/Projects/pysvn/Extension/Tests
 Info: Command: cd testroot-01
-Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01
+Info: CWD: /home/barry/Projects/pysvn/Extension/Tests/testroot-01
 Info: Command: mkdir tmp
-Info: PYSVN command /usr/local/bin/python3.5 /Users/barry/wc/svn/pysvn/Extension/Examples/Client/svn_cmd.py --pysvn-testing 01.01.00 --config-dir /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/configdir
-Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01
-Info: Command: svnadmin create /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/repos
+Info: PYSVN command /usr/bin/python /home/barry/Projects/pysvn/Extension/Examples/Client/svn_cmd.py --pysvn-testing 01.01.00 --config-dir /home/barry/Projects/pysvn/Extension/Tests/testroot-01/configdir
+Info: CWD: /home/barry/Projects/pysvn/Extension/Tests/testroot-01
+Info: Command: svnadmin create /home/barry/Projects/pysvn/Extension/Tests/testroot-01/repos
 Info: Testing - mkdir
-Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01
-Info: pysvn command: mkdir file:///Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/repos/trunk -m test-01 add trunk
+Info: CWD: /home/barry/Projects/pysvn/Extension/Tests/testroot-01
+Info: pysvn command: mkdir file:///home/barry/Projects/pysvn/Extension/Tests/testroot-01/repos/trunk -m test-01 add trunk
 commit_finalizing .
-Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01
-Info: pysvn command: mkdir file:///Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/repos/trunk/test -m test-01 add test
+Info: CWD: /home/barry/Projects/pysvn/Extension/Tests/testroot-01
+Info: pysvn command: mkdir file:///home/barry/Projects/pysvn/Extension/Tests/testroot-01/repos/trunk/test -m test-01 add test
 commit_finalizing .
 Info: Testing - ls
-Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01
-Info: pysvn command: ls file:///Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/repos -v -R
-      2 barry           - 01-Apr-2018 09:55:46 file:///Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/repos/trunk
-      2 barry           - 01-Apr-2018 09:55:46 file:///Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/repos/trunk/test
+Info: CWD: /home/barry/Projects/pysvn/Extension/Tests/testroot-01
+Info: pysvn command: ls file:///home/barry/Projects/pysvn/Extension/Tests/testroot-01/repos -v -R
+      2 barry           - 30-Jan-2022 11:33:14 file:///home/barry/Projects/pysvn/Extension/Tests/testroot-01/repos/trunk
+      2 barry           - 30-Jan-2022 11:33:14 file:///home/barry/Projects/pysvn/Extension/Tests/testroot-01/repos/trunk/test
 Info: Testing - checkout
-Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01
-Info: pysvn command: checkout file:///Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/repos/trunk /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1
-A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test
-U /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1
-update_started /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1
+Info: CWD: /home/barry/Projects/pysvn/Extension/Tests/testroot-01
+Info: pysvn command: checkout file:///home/barry/Projects/pysvn/Extension/Tests/testroot-01/repos/trunk /home/barry/Projects/pysvn/Extension/Tests/testroot-01/wc1
+A /home/barry/Projects/pysvn/Extension/Tests/testroot-01/wc1/test
+U /home/barry/Projects/pysvn/Extension/Tests/testroot-01/wc1
+update_started /home/barry/Projects/pysvn/Extension/Tests/testroot-01/wc1
 Checked out revision 2
-Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01
-Info: Command: /usr/local/bin/python3.5 /Users/barry/wc/svn/pysvn/Extension/Tests/find.py /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1
-Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01
-Info: Command: cd /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test
+Info: CWD: /home/barry/Projects/pysvn/Extension/Tests/testroot-01
+Info: Command: /usr/bin/python /home/barry/Projects/pysvn/Extension/Tests/find.py /home/barry/Projects/pysvn/Extension/Tests/testroot-01/wc1
+Info: CWD: /home/barry/Projects/pysvn/Extension/Tests/testroot-01
+Info: Command: cd /home/barry/Projects/pysvn/Extension/Tests/testroot-01/wc1/test
 Info: Testing - add
-Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test
+Info: CWD: /home/barry/Projects/pysvn/Extension/Tests/testroot-01/wc1/test
 Info: pysvn command: add file1.txt
-A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test/file1.txt
-Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test
+A /home/barry/Projects/pysvn/Extension/Tests/testroot-01/wc1/test/file1.txt
+Info: CWD: /home/barry/Projects/pysvn/Extension/Tests/testroot-01/wc1/test
 Info: pysvn command: add file2.txt
-A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test/file2.txt
-Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test
+A /home/barry/Projects/pysvn/Extension/Tests/testroot-01/wc1/test/file2.txt
+Info: CWD: /home/barry/Projects/pysvn/Extension/Tests/testroot-01/wc1/test
 Info: pysvn command: add file3.txt
-A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test/file3.txt
-Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test
+A /home/barry/Projects/pysvn/Extension/Tests/testroot-01/wc1/test/file3.txt
+Info: CWD: /home/barry/Projects/pysvn/Extension/Tests/testroot-01/wc1/test
 Info: pysvn command: add file4.txt
-A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test/file4.txt
-Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test
+A /home/barry/Projects/pysvn/Extension/Tests/testroot-01/wc1/test/file4.txt
+Info: CWD: /home/barry/Projects/pysvn/Extension/Tests/testroot-01/wc1/test
 Info: pysvn command: add --force file5.txt
-A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test/file5.txt
-Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test
+A /home/barry/Projects/pysvn/Extension/Tests/testroot-01/wc1/test/file5.txt
+Info: CWD: /home/barry/Projects/pysvn/Extension/Tests/testroot-01/wc1/test
 Info: pysvn command: add file6.txt
-A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test/file6.txt
-Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test
+A /home/barry/Projects/pysvn/Extension/Tests/testroot-01/wc1/test/file6.txt
+Info: CWD: /home/barry/Projects/pysvn/Extension/Tests/testroot-01/wc1/test
 Info: pysvn command: add folder1
-A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test/folder1
-A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test/folder1/file7.txt
-A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test/folder1/folder2
-A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test/folder1/folder2/file8.txt
-Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test
+A /home/barry/Projects/pysvn/Extension/Tests/testroot-01/wc1/test/folder1
+A /home/barry/Projects/pysvn/Extension/Tests/testroot-01/wc1/test/folder1/file7.txt
+A /home/barry/Projects/pysvn/Extension/Tests/testroot-01/wc1/test/folder1/folder2
+A /home/barry/Projects/pysvn/Extension/Tests/testroot-01/wc1/test/folder1/folder2/file8.txt
+Info: CWD: /home/barry/Projects/pysvn/Extension/Tests/testroot-01/wc1/test
 Info: pysvn command: add --non-recursive folder3
-A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test/folder3
-Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test
+A /home/barry/Projects/pysvn/Extension/Tests/testroot-01/wc1/test/folder3
+Info: CWD: /home/barry/Projects/pysvn/Extension/Tests/testroot-01/wc1/test
 Info: pysvn command: checkin -m commit added files
-A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test/file1.txt
-A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test/file2.txt
-A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test/file3.txt
-A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test/file4.txt
-A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test/file5.txt
-A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test/file6.txt
-A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test/folder1
-A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test/folder1/file7.txt
-A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test/folder1/folder2
-A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test/folder1/folder2/file8.txt
-A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test/folder3
+A /home/barry/Projects/pysvn/Extension/Tests/testroot-01/wc1/test/file1.txt
+A /home/barry/Projects/pysvn/Extension/Tests/testroot-01/wc1/test/file2.txt
+A /home/barry/Projects/pysvn/Extension/Tests/testroot-01/wc1/test/file3.txt
+A /home/barry/Projects/pysvn/Extension/Tests/testroot-01/wc1/test/file4.txt
+A /home/barry/Projects/pysvn/Extension/Tests/testroot-01/wc1/test/file5.txt
+A /home/barry/Projects/pysvn/Extension/Tests/testroot-01/wc1/test/file6.txt
+A /home/barry/Projects/pysvn/Extension/Tests/testroot-01/wc1/test/folder1
+A /home/barry/Projects/pysvn/Extension/Tests/testroot-01/wc1/test/folder1/file7.txt
+A /home/barry/Projects/pysvn/Extension/Tests/testroot-01/wc1/test/folder1/folder2
+A /home/barry/Projects/pysvn/Extension/Tests/testroot-01/wc1/test/folder1/folder2/file8.txt
+A /home/barry/Projects/pysvn/Extension/Tests/testroot-01/wc1/test/folder3
 commit_finalizing .
 Revision 3
 Info: Setup to test access to deleted files
-Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test
+Info: CWD: /home/barry/Projects/pysvn/Extension/Tests/testroot-01/wc1/test
 Info: pysvn command: checkin -m commit mod file
-M /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test/file6.txt
+M /home/barry/Projects/pysvn/Extension/Tests/testroot-01/wc1/test/file6.txt
 commit_finalizing .
 Revision 4
-Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test
+Info: CWD: /home/barry/Projects/pysvn/Extension/Tests/testroot-01/wc1/test
 Info: pysvn command: rm file6.txt
-D /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test/file6.txt
-Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test
+D /home/barry/Projects/pysvn/Extension/Tests/testroot-01/wc1/test/file6.txt
+Info: CWD: /home/barry/Projects/pysvn/Extension/Tests/testroot-01/wc1/test
 Info: pysvn command: checkin -m commit delete file
-D /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test/file6.txt
+D /home/barry/Projects/pysvn/Extension/Tests/testroot-01/wc1/test/file6.txt
 commit_finalizing .
 Revision 5
 Info: Testing - update - get a new wc that will update
-Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test
-Info: pysvn command: checkout file:///Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/repos/trunk /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2
-A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test
-A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file1.txt
-A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file2.txt
-A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file3.txt
-A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file4.txt
-A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file5.txt
-A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/folder1
-A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/folder1/file7.txt
-A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/folder1/folder2
-A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/folder1/folder2/file8.txt
-A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/folder3
-U /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2
-update_started /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2
+Info: CWD: /home/barry/Projects/pysvn/Extension/Tests/testroot-01/wc1/test
+Info: pysvn command: checkout file:///home/barry/Projects/pysvn/Extension/Tests/testroot-01/repos/trunk /home/barry/Projects/pysvn/Extension/Tests/testroot-01/wc2
+A /home/barry/Projects/pysvn/Extension/Tests/testroot-01/wc2/test
+A /home/barry/Projects/pysvn/Extension/Tests/testroot-01/wc2/test/file1.txt
+A /home/barry/Projects/pysvn/Extension/Tests/testroot-01/wc2/test/file2.txt
+A /home/barry/Projects/pysvn/Extension/Tests/testroot-01/wc2/test/file3.txt
+A /home/barry/Projects/pysvn/Extension/Tests/testroot-01/wc2/test/file4.txt
+A /home/barry/Projects/pysvn/Extension/Tests/testroot-01/wc2/test/file5.txt
+A /home/barry/Projects/pysvn/Extension/Tests/testroot-01/wc2/test/folder1
+A /home/barry/Projects/pysvn/Extension/Tests/testroot-01/wc2/test/folder1/file7.txt
+A /home/barry/Projects/pysvn/Extension/Tests/testroot-01/wc2/test/folder1/folder2
+A /home/barry/Projects/pysvn/Extension/Tests/testroot-01/wc2/test/folder1/folder2/file8.txt
+A /home/barry/Projects/pysvn/Extension/Tests/testroot-01/wc2/test/folder3
+U /home/barry/Projects/pysvn/Extension/Tests/testroot-01/wc2
+update_started /home/barry/Projects/pysvn/Extension/Tests/testroot-01/wc2
 Checked out revision 5
 Info: Testing - - checkin a mod from wc1
-Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test
+Info: CWD: /home/barry/Projects/pysvn/Extension/Tests/testroot-01/wc1/test
 Info: pysvn command: checkin -m commit modified file
-M /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test/file1.txt
+M /home/barry/Projects/pysvn/Extension/Tests/testroot-01/wc1/test/file1.txt
 commit_finalizing .
 Revision 6
 Info: Testing - update
-Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test
-Info: pysvn command: update /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2
-U /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2
-U /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test
-U /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file1.txt
-update_started /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2
+Info: CWD: /home/barry/Projects/pysvn/Extension/Tests/testroot-01/wc1/test
+Info: pysvn command: update /home/barry/Projects/pysvn/Extension/Tests/testroot-01/wc2
+U /home/barry/Projects/pysvn/Extension/Tests/testroot-01/wc2
+U /home/barry/Projects/pysvn/Extension/Tests/testroot-01/wc2/test
+U /home/barry/Projects/pysvn/Extension/Tests/testroot-01/wc2/test/file1.txt
+update_started /home/barry/Projects/pysvn/Extension/Tests/testroot-01/wc2
 Updated to revision 6
 Info: Testing - the rest in lexical order
 Info: Testing - annotate
-Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test
-Info: pysvn command: annotate /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file1.txt
+Info: CWD: /home/barry/Projects/pysvn/Extension/Tests/testroot-01/wc1/test
+Info: pysvn command: annotate /home/barry/Projects/pysvn/Extension/Tests/testroot-01/wc2/test/file1.txt
 A /trunk/test/file1.txt
 A /trunk/test/file1.txt
-1| r3 | barry | 2018-04-01T08:55:48.656649Z | test add file 1
-2| r6 | barry | 2018-04-01T08:55:52.264880Z | line 2
-Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test
-Info: pysvn command: annotate -r 3:4 file:///Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/repos/trunk/test/file6.txt
+1| r3 | barry | 2022-01-30T11:33:15.638655Z | test add file 1
+2| r6 | barry | 2022-01-30T11:33:16.621842Z | line 2
+Info: CWD: /home/barry/Projects/pysvn/Extension/Tests/testroot-01/wc1/test
+Info: pysvn command: annotate -r 3:4 file:///home/barry/Projects/pysvn/Extension/Tests/testroot-01/repos/trunk/test/file6.txt
 A /trunk/test/file6.txt
 A /trunk/test/file6.txt
-1| r3 | barry | 2018-04-01T08:55:48.656649Z | test add file 6
-2| r4 | barry | 2018-04-01T08:55:49.246188Z | test mod file 6
+1| r3 | barry | 2022-01-30T11:33:15.638655Z | test add file 6
+2| r4 | barry | 2022-01-30T11:33:15.921450Z | test mod file 6
 Info: Testing - cat
-Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test
-Info: pysvn command: cat -r head file:///Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/repos/trunk/test/file1.txt
+Info: CWD: /home/barry/Projects/pysvn/Extension/Tests/testroot-01/wc1/test
+Info: pysvn command: cat -r head file:///home/barry/Projects/pysvn/Extension/Tests/testroot-01/repos/trunk/test/file1.txt
 test add file 1
 line 2
 
-Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test
-Info: pysvn command: cat -r 4 file:///Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/repos/trunk/test/file6.txt
+Info: CWD: /home/barry/Projects/pysvn/Extension/Tests/testroot-01/wc1/test
+Info: pysvn command: cat -r 4 file:///home/barry/Projects/pysvn/Extension/Tests/testroot-01/repos/trunk/test/file6.txt
 test add file 6
 test mod file 6
 
 Info: Testing - cleanup
-Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test
-Info: pysvn command: cleanup /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1
-Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test
-Info: Command: cd /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1
-Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1
+Info: CWD: /home/barry/Projects/pysvn/Extension/Tests/testroot-01/wc1/test
+Info: pysvn command: cleanup /home/barry/Projects/pysvn/Extension/Tests/testroot-01/wc1
+Info: CWD: /home/barry/Projects/pysvn/Extension/Tests/testroot-01/wc1/test
+Info: Command: cd /home/barry/Projects/pysvn/Extension/Tests/testroot-01/wc1
+Info: CWD: /home/barry/Projects/pysvn/Extension/Tests/testroot-01/wc1
 Info: pysvn command: cleanup .
-Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1
-Info: Command: cd /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test
+Info: CWD: /home/barry/Projects/pysvn/Extension/Tests/testroot-01/wc1
+Info: Command: cd /home/barry/Projects/pysvn/Extension/Tests/testroot-01/wc1/test
 Info: Testing - copy
-Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test
-Info: pysvn command: mkdir file:///Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/repos/tags -m test-01 add tags
+Info: CWD: /home/barry/Projects/pysvn/Extension/Tests/testroot-01/wc1/test
+Info: pysvn command: mkdir file:///home/barry/Projects/pysvn/Extension/Tests/testroot-01/repos/tags -m test-01 add tags
 commit_finalizing .
-Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test
-Info: pysvn command: copy file:///Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/repos/trunk file:///Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/repos/tags/version1
+Info: CWD: /home/barry/Projects/pysvn/Extension/Tests/testroot-01/wc1/test
+Info: pysvn command: copy file:///home/barry/Projects/pysvn/Extension/Tests/testroot-01/repos/trunk file:///home/barry/Projects/pysvn/Extension/Tests/testroot-01/repos/tags/version1
 Log message
 --- -------
 commit_finalizing .
-Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test
-Info: pysvn command: ls -v file:///Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/repos/tags
-      8 barry           - 01-Apr-2018 09:55:56 file:///Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/repos/tags/version1
-Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test
-Info: pysvn command: copy /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file1.txt /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file1b.txt
-A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file1b.txt
-Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test
-Info: pysvn command: propset svn:eol-style native /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file1b.txt
-property_added /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file1b.txt
-Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test
-Info: pysvn command: checkin /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2 -m copy test
-commit_copied /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file1b.txt
+Info: CWD: /home/barry/Projects/pysvn/Extension/Tests/testroot-01/wc1/test
+Info: pysvn command: ls -v file:///home/barry/Projects/pysvn/Extension/Tests/testroot-01/repos/tags
+      8 barry           - 30-Jan-2022 11:33:17 file:///home/barry/Projects/pysvn/Extension/Tests/testroot-01/repos/tags/version1
+Info: CWD: /home/barry/Projects/pysvn/Extension/Tests/testroot-01/wc1/test
+Info: pysvn command: copy /home/barry/Projects/pysvn/Extension/Tests/testroot-01/wc2/test/file1.txt /home/barry/Projects/pysvn/Extension/Tests/testroot-01/wc2/test/file1b.txt
+A /home/barry/Projects/pysvn/Extension/Tests/testroot-01/wc2/test/file1b.txt
+Info: CWD: /home/barry/Projects/pysvn/Extension/Tests/testroot-01/wc1/test
+Info: pysvn command: propset svn:eol-style native /home/barry/Projects/pysvn/Extension/Tests/testroot-01/wc2/test/file1b.txt
+property_added /home/barry/Projects/pysvn/Extension/Tests/testroot-01/wc2/test/file1b.txt
+Info: CWD: /home/barry/Projects/pysvn/Extension/Tests/testroot-01/wc1/test
+Info: pysvn command: checkin /home/barry/Projects/pysvn/Extension/Tests/testroot-01/wc2 -m copy test
+commit_copied /home/barry/Projects/pysvn/Extension/Tests/testroot-01/wc2/test/file1b.txt
 commit_finalizing .
 Revision 9
 Info: Testing - diff
-Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test
-Info: pysvn command: diff /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2
-Index: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file1b.txt
+Info: CWD: /home/barry/Projects/pysvn/Extension/Tests/testroot-01/wc1/test
+Info: pysvn command: diff /home/barry/Projects/pysvn/Extension/Tests/testroot-01/wc2
+Index: /home/barry/Projects/pysvn/Extension/Tests/testroot-01/wc2/test/file1b.txt
 ===================================================================
---- /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file1b.txt	(revision 9)
-+++ /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file1b.txt	(working copy)
+--- /home/barry/Projects/pysvn/Extension/Tests/testroot-01/wc2/test/file1b.txt	(revision 9)
++++ /home/barry/Projects/pysvn/Extension/Tests/testroot-01/wc2/test/file1b.txt	(working copy)
 @@ -1,2 +1,3 @@
  test add file 1
  line 2
 +new line
 
+Info: Testing - diff none utf-8
+Info: CWD: /home/barry/Projects/pysvn/Extension/Tests/testroot-01/wc1/test
+Info: pysvn command: diff --return-bytes /home/barry/Projects/pysvn/Extension/Tests/testroot-01/wc2
+b'Index: /home/barry/Projects/pysvn/Extension/Tests/testroot-01/wc2/test/file1b.txt'
+b'==================================================================='
+b'--- /home/barry/Projects/pysvn/Extension/Tests/testroot-01/wc2/test/file1b.txt\t(revision 9)'
+b'+++ /home/barry/Projects/pysvn/Extension/Tests/testroot-01/wc2/test/file1b.txt\t(working copy)'
+b'@@ -1,2 +1,4 @@'
+b' test add file 1'
+b' line 2'
+b'+new line'
+b'+Non UTF-8 \xc0 is 0xc0'
+b''
 Info: Testing - export
-Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test
-Info: pysvn command: export file:///Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/repos/trunk/test /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.native
-A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.native
-A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.native/file1.txt
-A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.native/file1b.txt
-A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.native/file2.txt
-A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.native/file3.txt
-A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.native/file4.txt
-A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.native/file5.txt
-A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.native/folder1
-A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.native/folder1/file7.txt
-A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.native/folder1/folder2
-A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.native/folder1/folder2/file8.txt
-A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.native/folder3
-Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test
-Info: pysvn command: export --native-eol CR file:///Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/repos/trunk/test /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.cr
-A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.cr
-A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.cr/file1.txt
-A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.cr/file1b.txt
-A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.cr/file2.txt
-A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.cr/file3.txt
-A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.cr/file4.txt
-A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.cr/file5.txt
-A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.cr/folder1
-A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.cr/folder1/file7.txt
-A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.cr/folder1/folder2
-A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.cr/folder1/folder2/file8.txt
-A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.cr/folder3
-Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test
-Info: pysvn command: export --native-eol LF file:///Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/repos/trunk/test /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.lf
-A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.lf
-A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.lf/file1.txt
-A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.lf/file1b.txt
-A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.lf/file2.txt
-A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.lf/file3.txt
-A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.lf/file4.txt
-A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.lf/file5.txt
-A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.lf/folder1
-A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.lf/folder1/file7.txt
-A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.lf/folder1/folder2
-A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.lf/folder1/folder2/file8.txt
-A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.lf/folder3
-Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test
-Info: pysvn command: export --native-eol CRLF file:///Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/repos/trunk/test /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.crlf
-A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.crlf
-A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.crlf/file1.txt
-A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.crlf/file1b.txt
-A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.crlf/file2.txt
-A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.crlf/file3.txt
-A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.crlf/file4.txt
-A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.crlf/file5.txt
-A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.crlf/folder1
-A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.crlf/folder1/file7.txt
-A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.crlf/folder1/folder2
-A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.crlf/folder1/folder2/file8.txt
-A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.crlf/folder3
-/Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.native/file1.txt
-/Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.native/file1b.txt
-/Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.native/file2.txt
-/Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.native/file3.txt
-/Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.native/file4.txt
-/Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.native/file5.txt
-/Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.native/folder1/file7.txt
-/Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.native/folder1/folder2/file8.txt
-/Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.cr/file1.txt
-/Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.cr/file1b.txt
-/Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.cr/file2.txt
-/Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.cr/file3.txt
-/Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.cr/file4.txt
-/Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.cr/file5.txt
-/Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.cr/folder1/file7.txt
-/Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.cr/folder1/folder2/file8.txt
-/Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.lf/file1.txt
-/Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.lf/file1b.txt
-/Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.lf/file2.txt
-/Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.lf/file3.txt
-/Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.lf/file4.txt
-/Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.lf/file5.txt
-/Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.lf/folder1/file7.txt
-/Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.lf/folder1/folder2/file8.txt
-/Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.crlf/file1.txt
-/Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.crlf/file1b.txt
-/Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.crlf/file2.txt
-/Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.crlf/file3.txt
-/Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.crlf/file4.txt
-/Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.crlf/file5.txt
-/Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.crlf/folder1/file7.txt
-/Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/export1.crlf/folder1/folder2/file8.txt
+Info: CWD: /home/barry/Projects/pysvn/Extension/Tests/testroot-01/wc1/test
+Info: pysvn command: export file:///home/barry/Projects/pysvn/Extension/Tests/testroot-01/repos/trunk/test /home/barry/Projects/pysvn/Extension/Tests/testroot-01/export1.native
+A /home/barry/Projects/pysvn/Extension/Tests/testroot-01/export1.native
+A /home/barry/Projects/pysvn/Extension/Tests/testroot-01/export1.native/file1.txt
+A /home/barry/Projects/pysvn/Extension/Tests/testroot-01/export1.native/file1b.txt
+A /home/barry/Projects/pysvn/Extension/Tests/testroot-01/export1.native/file2.txt
+A /home/barry/Projects/pysvn/Extension/Tests/testroot-01/export1.native/file3.txt
+A /home/barry/Projects/pysvn/Extension/Tests/testroot-01/export1.native/file4.txt
+A /home/barry/Projects/pysvn/Extension/Tests/testroot-01/export1.native/file5.txt
+A /home/barry/Projects/pysvn/Extension/Tests/testroot-01/export1.native/folder1
+A /home/barry/Projects/pysvn/Extension/Tests/testroot-01/export1.native/folder1/file7.txt
+A /home/barry/Projects/pysvn/Extension/Tests/testroot-01/export1.native/folder1/folder2
+A /home/barry/Projects/pysvn/Extension/Tests/testroot-01/export1.native/folder1/folder2/file8.txt
+A /home/barry/Projects/pysvn/Extension/Tests/testroot-01/export1.native/folder3
+Info: CWD: /home/barry/Projects/pysvn/Extension/Tests/testroot-01/wc1/test
+Info: pysvn command: export --native-eol CR file:///home/barry/Projects/pysvn/Extension/Tests/testroot-01/repos/trunk/test /home/barry/Projects/pysvn/Extension/Tests/testroot-01/export1.cr
+A /home/barry/Projects/pysvn/Extension/Tests/testroot-01/export1.cr
+A /home/barry/Projects/pysvn/Extension/Tests/testroot-01/export1.cr/file1.txt
+A /home/barry/Projects/pysvn/Extension/Tests/testroot-01/export1.cr/file1b.txt
+A /home/barry/Projects/pysvn/Extension/Tests/testroot-01/export1.cr/file2.txt
+A /home/barry/Projects/pysvn/Extension/Tests/testroot-01/export1.cr/file3.txt
+A /home/barry/Projects/pysvn/Extension/Tests/testroot-01/export1.cr/file4.txt
+A /home/barry/Projects/pysvn/Extension/Tests/testroot-01/export1.cr/file5.txt
+A /home/barry/Projects/pysvn/Extension/Tests/testroot-01/export1.cr/folder1
+A /home/barry/Projects/pysvn/Extension/Tests/testroot-01/export1.cr/folder1/file7.txt
+A /home/barry/Projects/pysvn/Extension/Tests/testroot-01/export1.cr/folder1/folder2
+A /home/barry/Projects/pysvn/Extension/Tests/testroot-01/export1.cr/folder1/folder2/file8.txt
+A /home/barry/Projects/pysvn/Extension/Tests/testroot-01/export1.cr/folder3
+Info: CWD: /home/barry/Projects/pysvn/Extension/Tests/testroot-01/wc1/test
+Info: pysvn command: export --native-eol LF file:///home/barry/Projects/pysvn/Extension/Tests/testroot-01/repos/trunk/test /home/barry/Projects/pysvn/Extension/Tests/testroot-01/export1.lf
+A /home/barry/Projects/pysvn/Extension/Tests/testroot-01/export1.lf
+A /home/barry/Projects/pysvn/Extension/Tests/testroot-01/export1.lf/file1.txt
+A /home/barry/Projects/pysvn/Extension/Tests/testroot-01/export1.lf/file1b.txt
+A /home/barry/Projects/pysvn/Extension/Tests/testroot-01/export1.lf/file2.txt
+A /home/barry/Projects/pysvn/Extension/Tests/testroot-01/export1.lf/file3.txt
+A /home/barry/Projects/pysvn/Extension/Tests/testroot-01/export1.lf/file4.txt
+A /home/barry/Projects/pysvn/Extension/Tests/testroot-01/export1.lf/file5.txt
+A /home/barry/Projects/pysvn/Extension/Tests/testroot-01/export1.lf/folder1
+A /home/barry/Projects/pysvn/Extension/Tests/testroot-01/export1.lf/folder1/file7.txt
+A /home/barry/Projects/pysvn/Extension/Tests/testroot-01/export1.lf/folder1/folder2
+A /home/barry/Projects/pysvn/Extension/Tests/testroot-01/export1.lf/folder1/folder2/file8.txt
+A /home/barry/Projects/pysvn/Extension/Tests/testroot-01/export1.lf/folder3
+Info: CWD: /home/barry/Projects/pysvn/Extension/Tests/testroot-01/wc1/test
+Info: pysvn command: export --native-eol CRLF file:///home/barry/Projects/pysvn/Extension/Tests/testroot-01/repos/trunk/test /home/barry/Projects/pysvn/Extension/Tests/testroot-01/export1.crlf
+A /home/barry/Projects/pysvn/Extension/Tests/testroot-01/export1.crlf
+A /home/barry/Projects/pysvn/Extension/Tests/testroot-01/export1.crlf/file1.txt
+A /home/barry/Projects/pysvn/Extension/Tests/testroot-01/export1.crlf/file1b.txt
+A /home/barry/Projects/pysvn/Extension/Tests/testroot-01/export1.crlf/file2.txt
+A /home/barry/Projects/pysvn/Extension/Tests/testroot-01/export1.crlf/file3.txt
+A /home/barry/Projects/pysvn/Extension/Tests/testroot-01/export1.crlf/file4.txt
+A /home/barry/Projects/pysvn/Extension/Tests/testroot-01/export1.crlf/file5.txt
+A /home/barry/Projects/pysvn/Extension/Tests/testroot-01/export1.crlf/folder1
+A /home/barry/Projects/pysvn/Extension/Tests/testroot-01/export1.crlf/folder1/file7.txt
+A /home/barry/Projects/pysvn/Extension/Tests/testroot-01/export1.crlf/folder1/folder2
+A /home/barry/Projects/pysvn/Extension/Tests/testroot-01/export1.crlf/folder1/folder2/file8.txt
+A /home/barry/Projects/pysvn/Extension/Tests/testroot-01/export1.crlf/folder3
+/home/barry/Projects/pysvn/Extension/Tests/testroot-01/export1.native/file1.txt
+/home/barry/Projects/pysvn/Extension/Tests/testroot-01/export1.native/file1b.txt
+/home/barry/Projects/pysvn/Extension/Tests/testroot-01/export1.native/file2.txt
+/home/barry/Projects/pysvn/Extension/Tests/testroot-01/export1.native/file3.txt
+/home/barry/Projects/pysvn/Extension/Tests/testroot-01/export1.native/file4.txt
+/home/barry/Projects/pysvn/Extension/Tests/testroot-01/export1.native/file5.txt
+/home/barry/Projects/pysvn/Extension/Tests/testroot-01/export1.native/folder1/file7.txt
+/home/barry/Projects/pysvn/Extension/Tests/testroot-01/export1.native/folder1/folder2/file8.txt
+/home/barry/Projects/pysvn/Extension/Tests/testroot-01/export1.cr/file1.txt
+/home/barry/Projects/pysvn/Extension/Tests/testroot-01/export1.cr/file1b.txt
+/home/barry/Projects/pysvn/Extension/Tests/testroot-01/export1.cr/file2.txt
+/home/barry/Projects/pysvn/Extension/Tests/testroot-01/export1.cr/file3.txt
+/home/barry/Projects/pysvn/Extension/Tests/testroot-01/export1.cr/file4.txt
+/home/barry/Projects/pysvn/Extension/Tests/testroot-01/export1.cr/file5.txt
+/home/barry/Projects/pysvn/Extension/Tests/testroot-01/export1.cr/folder1/file7.txt
+/home/barry/Projects/pysvn/Extension/Tests/testroot-01/export1.cr/folder1/folder2/file8.txt
+/home/barry/Projects/pysvn/Extension/Tests/testroot-01/export1.lf/file1.txt
+/home/barry/Projects/pysvn/Extension/Tests/testroot-01/export1.lf/file1b.txt
+/home/barry/Projects/pysvn/Extension/Tests/testroot-01/export1.lf/file2.txt
+/home/barry/Projects/pysvn/Extension/Tests/testroot-01/export1.lf/file3.txt
+/home/barry/Projects/pysvn/Extension/Tests/testroot-01/export1.lf/file4.txt
+/home/barry/Projects/pysvn/Extension/Tests/testroot-01/export1.lf/file5.txt
+/home/barry/Projects/pysvn/Extension/Tests/testroot-01/export1.lf/folder1/file7.txt
+/home/barry/Projects/pysvn/Extension/Tests/testroot-01/export1.lf/folder1/folder2/file8.txt
+/home/barry/Projects/pysvn/Extension/Tests/testroot-01/export1.crlf/file1.txt
+/home/barry/Projects/pysvn/Extension/Tests/testroot-01/export1.crlf/file1b.txt
+/home/barry/Projects/pysvn/Extension/Tests/testroot-01/export1.crlf/file2.txt
+/home/barry/Projects/pysvn/Extension/Tests/testroot-01/export1.crlf/file3.txt
+/home/barry/Projects/pysvn/Extension/Tests/testroot-01/export1.crlf/file4.txt
+/home/barry/Projects/pysvn/Extension/Tests/testroot-01/export1.crlf/file5.txt
+/home/barry/Projects/pysvn/Extension/Tests/testroot-01/export1.crlf/folder1/file7.txt
+/home/barry/Projects/pysvn/Extension/Tests/testroot-01/export1.crlf/folder1/folder2/file8.txt
 Info: Testing - info
-Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test
-Info: pysvn command: info /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test
-Path: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test
+Info: CWD: /home/barry/Projects/pysvn/Extension/Tests/testroot-01/wc1/test
+Info: pysvn command: info /home/barry/Projects/pysvn/Extension/Tests/testroot-01/wc2/test
+Path: /home/barry/Projects/pysvn/Extension/Tests/testroot-01/wc2/test
 Name: .
-Url: file:///Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/repos/trunk/test
-Repository UUID: 26afa6a8-5039-46b3-bd95-8bf0b505475b
+Url: file:///home/barry/Projects/pysvn/Extension/Tests/testroot-01/repos/trunk/test
+Repository UUID: 5e9cb262-bc5e-422c-8c51-8a1f9a4f2951
 Revision: 6
 Node kind: directory
 Schedule: normal
 Last Changed Author: barry
 Last Changed Rev: 6
-Last Changed Date: 01-Apr-2018 09:55:52
-Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test
-Info: pysvn command: info /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file1.txt
-Path: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file1.txt
+Last Changed Date: 30-Jan-2022 11:33:16
+Info: CWD: /home/barry/Projects/pysvn/Extension/Tests/testroot-01/wc1/test
+Info: pysvn command: info /home/barry/Projects/pysvn/Extension/Tests/testroot-01/wc2/test/file1.txt
+Path: /home/barry/Projects/pysvn/Extension/Tests/testroot-01/wc2/test/file1.txt
 Name: file1.txt
-Url: file:///Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/repos/trunk/test/file1.txt
-Repository UUID: 26afa6a8-5039-46b3-bd95-8bf0b505475b
+Url: file:///home/barry/Projects/pysvn/Extension/Tests/testroot-01/repos/trunk/test/file1.txt
+Repository UUID: 5e9cb262-bc5e-422c-8c51-8a1f9a4f2951
 Revision: 6
 Node kind: file
 Schedule: normal
 Last Changed Author: barry
 Last Changed Rev: 6
-Last Changed Date: 01-Apr-2018 09:55:52
-Text Last Updated: 01-Apr-2018 09:55:53
+Last Changed Date: 30-Jan-2022 11:33:16
+Text Last Updated: 30-Jan-2022 11:33:16
 Checksum: d17a5219a23a23ce7f363b75e09ec043
 Info: Testing - log
-Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test
-Info: pysvn command: log /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2
+Info: CWD: /home/barry/Projects/pysvn/Extension/Tests/testroot-01/wc1/test
+Info: pysvn command: log /home/barry/Projects/pysvn/Extension/Tests/testroot-01/wc2
 ------------------------------------------------------------
-rev 9: barry | 01-Apr-2018 09:55:57 | 1 lines
+rev 9: barry | 30-Jan-2022 11:33:18 | 1 lines
 copy test
 ------------------------------------------------------------
-rev 6: barry | 01-Apr-2018 09:55:52 | 1 lines
+rev 6: barry | 30-Jan-2022 11:33:16 | 1 lines
 commit modified file
 ------------------------------------------------------------
-rev 5: barry | 01-Apr-2018 09:55:50 | 1 lines
+rev 5: barry | 30-Jan-2022 11:33:16 | 1 lines
 commit delete file
 ------------------------------------------------------------
-rev 4: barry | 01-Apr-2018 09:55:49 | 1 lines
+rev 4: barry | 30-Jan-2022 11:33:15 | 1 lines
 commit mod file
 ------------------------------------------------------------
-rev 3: barry | 01-Apr-2018 09:55:48 | 1 lines
+rev 3: barry | 30-Jan-2022 11:33:15 | 1 lines
 commit added files
 ------------------------------------------------------------
-rev 2: barry | 01-Apr-2018 09:55:46 | 1 lines
+rev 2: barry | 30-Jan-2022 11:33:14 | 1 lines
 test-01 add test
 ------------------------------------------------------------
-rev 1: barry | 01-Apr-2018 09:55:45 | 1 lines
+rev 1: barry | 30-Jan-2022 11:33:14 | 1 lines
 test-01 add trunk
 ------------------------------------------------------------
 Info: Testing - ls
-Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test
-Info: pysvn command: ls file:///Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/repos/trunk/test
-file:///Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/repos/trunk/test/file1.txt
-file:///Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/repos/trunk/test/file1b.txt
-file:///Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/repos/trunk/test/file2.txt
-file:///Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/repos/trunk/test/file3.txt
-file:///Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/repos/trunk/test/file4.txt
-file:///Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/repos/trunk/test/file5.txt
-file:///Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/repos/trunk/test/folder1
-file:///Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/repos/trunk/test/folder3
-Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test
-Info: pysvn command: ls -v file:///Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/repos/trunk/test
-      6 barry          23 01-Apr-2018 09:55:52 file:///Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/repos/trunk/test/file1.txt
-      9 barry          23 01-Apr-2018 09:55:57 file:///Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/repos/trunk/test/file1b.txt
-      3 barry          16 01-Apr-2018 09:55:48 file:///Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/repos/trunk/test/file2.txt
-      3 barry          16 01-Apr-2018 09:55:48 file:///Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/repos/trunk/test/file3.txt
-      3 barry          16 01-Apr-2018 09:55:48 file:///Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/repos/trunk/test/file4.txt
-      3 barry          16 01-Apr-2018 09:55:48 file:///Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/repos/trunk/test/file5.txt
-      3 barry           - 01-Apr-2018 09:55:48 file:///Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/repos/trunk/test/folder1
-      3 barry           - 01-Apr-2018 09:55:48 file:///Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/repos/trunk/test/folder3
-Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test
-Info: pysvn command: ls /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test
-/Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file1.txt
-/Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file1b.txt
-/Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file2.txt
-/Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file3.txt
-/Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file4.txt
-/Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file5.txt
-/Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/folder1
-/Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/folder3
-Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test
-Info: pysvn command: ls -v /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test
-      6 barry          23 01-Apr-2018 09:55:52 /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file1.txt
-      9 barry          23 01-Apr-2018 09:55:57 /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file1b.txt
-      3 barry          16 01-Apr-2018 09:55:48 /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file2.txt
-      3 barry          16 01-Apr-2018 09:55:48 /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file3.txt
-      3 barry          16 01-Apr-2018 09:55:48 /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file4.txt
-      3 barry          16 01-Apr-2018 09:55:48 /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file5.txt
-      3 barry           - 01-Apr-2018 09:55:48 /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/folder1
-      3 barry           - 01-Apr-2018 09:55:48 /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/folder3
+Info: CWD: /home/barry/Projects/pysvn/Extension/Tests/testroot-01/wc1/test
+Info: pysvn command: ls file:///home/barry/Projects/pysvn/Extension/Tests/testroot-01/repos/trunk/test
+file:///home/barry/Projects/pysvn/Extension/Tests/testroot-01/repos/trunk/test/file1.txt
+file:///home/barry/Projects/pysvn/Extension/Tests/testroot-01/repos/trunk/test/file1b.txt
+file:///home/barry/Projects/pysvn/Extension/Tests/testroot-01/repos/trunk/test/file2.txt
+file:///home/barry/Projects/pysvn/Extension/Tests/testroot-01/repos/trunk/test/file3.txt
+file:///home/barry/Projects/pysvn/Extension/Tests/testroot-01/repos/trunk/test/file4.txt
+file:///home/barry/Projects/pysvn/Extension/Tests/testroot-01/repos/trunk/test/file5.txt
+file:///home/barry/Projects/pysvn/Extension/Tests/testroot-01/repos/trunk/test/folder1
+file:///home/barry/Projects/pysvn/Extension/Tests/testroot-01/repos/trunk/test/folder3
+Info: CWD: /home/barry/Projects/pysvn/Extension/Tests/testroot-01/wc1/test
+Info: pysvn command: ls -v file:///home/barry/Projects/pysvn/Extension/Tests/testroot-01/repos/trunk/test
+      6 barry          23 30-Jan-2022 11:33:16 file:///home/barry/Projects/pysvn/Extension/Tests/testroot-01/repos/trunk/test/file1.txt
+      9 barry          23 30-Jan-2022 11:33:18 file:///home/barry/Projects/pysvn/Extension/Tests/testroot-01/repos/trunk/test/file1b.txt
+      3 barry          16 30-Jan-2022 11:33:15 file:///home/barry/Projects/pysvn/Extension/Tests/testroot-01/repos/trunk/test/file2.txt
+      3 barry          16 30-Jan-2022 11:33:15 file:///home/barry/Projects/pysvn/Extension/Tests/testroot-01/repos/trunk/test/file3.txt
+      3 barry          16 30-Jan-2022 11:33:15 file:///home/barry/Projects/pysvn/Extension/Tests/testroot-01/repos/trunk/test/file4.txt
+      3 barry          16 30-Jan-2022 11:33:15 file:///home/barry/Projects/pysvn/Extension/Tests/testroot-01/repos/trunk/test/file5.txt
+      3 barry           - 30-Jan-2022 11:33:15 file:///home/barry/Projects/pysvn/Extension/Tests/testroot-01/repos/trunk/test/folder1
+      3 barry           - 30-Jan-2022 11:33:15 file:///home/barry/Projects/pysvn/Extension/Tests/testroot-01/repos/trunk/test/folder3
+Info: CWD: /home/barry/Projects/pysvn/Extension/Tests/testroot-01/wc1/test
+Info: pysvn command: ls /home/barry/Projects/pysvn/Extension/Tests/testroot-01/wc2/test
+/home/barry/Projects/pysvn/Extension/Tests/testroot-01/wc2/test/file1.txt
+/home/barry/Projects/pysvn/Extension/Tests/testroot-01/wc2/test/file1b.txt
+/home/barry/Projects/pysvn/Extension/Tests/testroot-01/wc2/test/file2.txt
+/home/barry/Projects/pysvn/Extension/Tests/testroot-01/wc2/test/file3.txt
+/home/barry/Projects/pysvn/Extension/Tests/testroot-01/wc2/test/file4.txt
+/home/barry/Projects/pysvn/Extension/Tests/testroot-01/wc2/test/file5.txt
+/home/barry/Projects/pysvn/Extension/Tests/testroot-01/wc2/test/folder1
+/home/barry/Projects/pysvn/Extension/Tests/testroot-01/wc2/test/folder3
+Info: CWD: /home/barry/Projects/pysvn/Extension/Tests/testroot-01/wc1/test
+Info: pysvn command: ls -v /home/barry/Projects/pysvn/Extension/Tests/testroot-01/wc2/test
+      6 barry          23 30-Jan-2022 11:33:16 /home/barry/Projects/pysvn/Extension/Tests/testroot-01/wc2/test/file1.txt
+      9 barry          23 30-Jan-2022 11:33:18 /home/barry/Projects/pysvn/Extension/Tests/testroot-01/wc2/test/file1b.txt
+      3 barry          16 30-Jan-2022 11:33:15 /home/barry/Projects/pysvn/Extension/Tests/testroot-01/wc2/test/file2.txt
+      3 barry          16 30-Jan-2022 11:33:15 /home/barry/Projects/pysvn/Extension/Tests/testroot-01/wc2/test/file3.txt
+      3 barry          16 30-Jan-2022 11:33:15 /home/barry/Projects/pysvn/Extension/Tests/testroot-01/wc2/test/file4.txt
+      3 barry          16 30-Jan-2022 11:33:15 /home/barry/Projects/pysvn/Extension/Tests/testroot-01/wc2/test/file5.txt
+      3 barry           - 30-Jan-2022 11:33:15 /home/barry/Projects/pysvn/Extension/Tests/testroot-01/wc2/test/folder1
+      3 barry           - 30-Jan-2022 11:33:15 /home/barry/Projects/pysvn/Extension/Tests/testroot-01/wc2/test/folder3
 Info: Testing - merge - done below
 Info: Testing - mkdir - done above
 Info: Testing - move
-Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test
-Info: pysvn command: move file:///Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/repos/trunk/test/file2.txt file:///Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/repos/trunk/test/file2b.txt
+Info: CWD: /home/barry/Projects/pysvn/Extension/Tests/testroot-01/wc1/test
+Info: pysvn command: move file:///home/barry/Projects/pysvn/Extension/Tests/testroot-01/repos/trunk/test/file2.txt file:///home/barry/Projects/pysvn/Extension/Tests/testroot-01/repos/trunk/test/file2b.txt
 Log message
 --- -------
 commit_finalizing .
-Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test
-Info: pysvn command: move /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file3.txt /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file3b.txt
-A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file3b.txt
-D /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file3.txt
-Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test
-Info: pysvn command: checkin /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2 -m move wc test
-D /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file3.txt
-M /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file1b.txt
-commit_copied /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file3b.txt
+Info: CWD: /home/barry/Projects/pysvn/Extension/Tests/testroot-01/wc1/test
+Info: pysvn command: move /home/barry/Projects/pysvn/Extension/Tests/testroot-01/wc2/test/file3.txt /home/barry/Projects/pysvn/Extension/Tests/testroot-01/wc2/test/file3b.txt
+A /home/barry/Projects/pysvn/Extension/Tests/testroot-01/wc2/test/file3b.txt
+D /home/barry/Projects/pysvn/Extension/Tests/testroot-01/wc2/test/file3.txt
+Info: CWD: /home/barry/Projects/pysvn/Extension/Tests/testroot-01/wc1/test
+Info: pysvn command: checkin /home/barry/Projects/pysvn/Extension/Tests/testroot-01/wc2 -m move wc test
+D /home/barry/Projects/pysvn/Extension/Tests/testroot-01/wc2/test/file3.txt
+M /home/barry/Projects/pysvn/Extension/Tests/testroot-01/wc2/test/file1b.txt
+commit_copied /home/barry/Projects/pysvn/Extension/Tests/testroot-01/wc2/test/file3b.txt
 commit_finalizing .
 Revision 11
 Info: Testing - status
-Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test
-Info: pysvn command: checkin /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1 -m change wc1 for status -u to detect
-M /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test/file4.txt
+Info: CWD: /home/barry/Projects/pysvn/Extension/Tests/testroot-01/wc1/test
+Info: pysvn command: checkin /home/barry/Projects/pysvn/Extension/Tests/testroot-01/wc1 -m change wc1 for status -u to detect
+M /home/barry/Projects/pysvn/Extension/Tests/testroot-01/wc1/test/file4.txt
 commit_finalizing .
 Revision 12
-Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test
-Info: pysvn command: status /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2
-Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test
-Info: pysvn command: status --verbose /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2
-               6      6 barry          /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2
-               6      6 barry          /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test
-               6      6 barry          /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file1.txt
-              11     11 barry          /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file1b.txt
-               6      3 barry          /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file2.txt
-              11     11 barry          /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file3b.txt
-               6      3 barry          /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file4.txt
-               6      3 barry          /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file5.txt
-               6      3 barry          /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/folder1
-               6      3 barry          /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/folder1/file7.txt
-               6      3 barry          /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/folder1/folder2
-               6      3 barry          /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/folder1/folder2/file8.txt
-               6      3 barry          /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/folder3
-Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test
-Info: pysvn command: status --show-updates /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2
-       M  /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test
-       D  /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file2.txt
-       A  /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file2b.txt
-       M  /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file4.txt
-Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test
-Info: pysvn command: status --show-updates --verbose /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2
-               6      6 barry          /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2
-       M       6      6 barry          /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test
-               6      6 barry          /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file1.txt
-              11     11 barry          /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file1b.txt
-       D       6      3 barry          /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file2.txt
-       A                               /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file2b.txt
-              11     11 barry          /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file3b.txt
-       M       6      3 barry          /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file4.txt
-               6      3 barry          /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file5.txt
-               6      3 barry          /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/folder1
-               6      3 barry          /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/folder1/file7.txt
-               6      3 barry          /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/folder1/folder2
-               6      3 barry          /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/folder1/folder2/file8.txt
-               6      3 barry          /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/folder3
-Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test
+Info: CWD: /home/barry/Projects/pysvn/Extension/Tests/testroot-01/wc1/test
+Info: pysvn command: status /home/barry/Projects/pysvn/Extension/Tests/testroot-01/wc2
+Info: CWD: /home/barry/Projects/pysvn/Extension/Tests/testroot-01/wc1/test
+Info: pysvn command: status --verbose /home/barry/Projects/pysvn/Extension/Tests/testroot-01/wc2
+               6      6 barry          /home/barry/Projects/pysvn/Extension/Tests/testroot-01/wc2
+               6      6 barry          /home/barry/Projects/pysvn/Extension/Tests/testroot-01/wc2/test
+               6      6 barry          /home/barry/Projects/pysvn/Extension/Tests/testroot-01/wc2/test/file1.txt
+              11     11 barry          /home/barry/Projects/pysvn/Extension/Tests/testroot-01/wc2/test/file1b.txt
+               6      3 barry          /home/barry/Projects/pysvn/Extension/Tests/testroot-01/wc2/test/file2.txt
+              11     11 barry          /home/barry/Projects/pysvn/Extension/Tests/testroot-01/wc2/test/file3b.txt
+               6      3 barry          /home/barry/Projects/pysvn/Extension/Tests/testroot-01/wc2/test/file4.txt
+               6      3 barry          /home/barry/Projects/pysvn/Extension/Tests/testroot-01/wc2/test/file5.txt
+               6      3 barry          /home/barry/Projects/pysvn/Extension/Tests/testroot-01/wc2/test/folder1
+               6      3 barry          /home/barry/Projects/pysvn/Extension/Tests/testroot-01/wc2/test/folder1/file7.txt
+               6      3 barry          /home/barry/Projects/pysvn/Extension/Tests/testroot-01/wc2/test/folder1/folder2
+               6      3 barry          /home/barry/Projects/pysvn/Extension/Tests/testroot-01/wc2/test/folder1/folder2/file8.txt
+               6      3 barry          /home/barry/Projects/pysvn/Extension/Tests/testroot-01/wc2/test/folder3
+Info: CWD: /home/barry/Projects/pysvn/Extension/Tests/testroot-01/wc1/test
+Info: pysvn command: status --show-updates /home/barry/Projects/pysvn/Extension/Tests/testroot-01/wc2
+       M  /home/barry/Projects/pysvn/Extension/Tests/testroot-01/wc2/test
+       D  /home/barry/Projects/pysvn/Extension/Tests/testroot-01/wc2/test/file2.txt
+       A  /home/barry/Projects/pysvn/Extension/Tests/testroot-01/wc2/test/file2b.txt
+       M  /home/barry/Projects/pysvn/Extension/Tests/testroot-01/wc2/test/file4.txt
+Info: CWD: /home/barry/Projects/pysvn/Extension/Tests/testroot-01/wc1/test
+Info: pysvn command: status --show-updates --verbose /home/barry/Projects/pysvn/Extension/Tests/testroot-01/wc2
+               6      6 barry          /home/barry/Projects/pysvn/Extension/Tests/testroot-01/wc2
+       M       6      6 barry          /home/barry/Projects/pysvn/Extension/Tests/testroot-01/wc2/test
+               6      6 barry          /home/barry/Projects/pysvn/Extension/Tests/testroot-01/wc2/test/file1.txt
+              11     11 barry          /home/barry/Projects/pysvn/Extension/Tests/testroot-01/wc2/test/file1b.txt
+       D       6      3 barry          /home/barry/Projects/pysvn/Extension/Tests/testroot-01/wc2/test/file2.txt
+       A                               /home/barry/Projects/pysvn/Extension/Tests/testroot-01/wc2/test/file2b.txt
+              11     11 barry          /home/barry/Projects/pysvn/Extension/Tests/testroot-01/wc2/test/file3b.txt
+       M       6      3 barry          /home/barry/Projects/pysvn/Extension/Tests/testroot-01/wc2/test/file4.txt
+               6      3 barry          /home/barry/Projects/pysvn/Extension/Tests/testroot-01/wc2/test/file5.txt
+               6      3 barry          /home/barry/Projects/pysvn/Extension/Tests/testroot-01/wc2/test/folder1
+               6      3 barry          /home/barry/Projects/pysvn/Extension/Tests/testroot-01/wc2/test/folder1/file7.txt
+               6      3 barry          /home/barry/Projects/pysvn/Extension/Tests/testroot-01/wc2/test/folder1/folder2
+               6      3 barry          /home/barry/Projects/pysvn/Extension/Tests/testroot-01/wc2/test/folder1/folder2/file8.txt
+               6      3 barry          /home/barry/Projects/pysvn/Extension/Tests/testroot-01/wc2/test/folder3
+Info: CWD: /home/barry/Projects/pysvn/Extension/Tests/testroot-01/wc1/test
 Info: pysvn command: update
-A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test/file1b.txt
-A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test/file2b.txt
-A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test/file3b.txt
-D /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test/file2.txt
-D /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test/file3.txt
-U /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1
-U /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test
-update_started /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test
+A /home/barry/Projects/pysvn/Extension/Tests/testroot-01/wc1/test/file1b.txt
+A /home/barry/Projects/pysvn/Extension/Tests/testroot-01/wc1/test/file2b.txt
+A /home/barry/Projects/pysvn/Extension/Tests/testroot-01/wc1/test/file3b.txt
+D /home/barry/Projects/pysvn/Extension/Tests/testroot-01/wc1/test/file2.txt
+D /home/barry/Projects/pysvn/Extension/Tests/testroot-01/wc1/test/file3.txt
+U /home/barry/Projects/pysvn/Extension/Tests/testroot-01/wc1
+U /home/barry/Projects/pysvn/Extension/Tests/testroot-01/wc1/test
+update_started /home/barry/Projects/pysvn/Extension/Tests/testroot-01/wc1/test
 Updated to revision 12
-Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test
-Info: pysvn command: status --show-updates /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2
-       M  /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test
-       D  /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file2.txt
-       A  /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file2b.txt
-       M  /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file4.txt
-Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test
-Info: pysvn command: status --show-updates --verbose /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2
-               6      6 barry          /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2
-       M       6      6 barry          /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test
-               6      6 barry          /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file1.txt
-              11     11 barry          /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file1b.txt
-       D       6      3 barry          /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file2.txt
-       A                               /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file2b.txt
-              11     11 barry          /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file3b.txt
-       M       6      3 barry          /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file4.txt
-               6      3 barry          /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file5.txt
-               6      3 barry          /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/folder1
-               6      3 barry          /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/folder1/file7.txt
-               6      3 barry          /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/folder1/folder2
-               6      3 barry          /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/folder1/folder2/file8.txt
-               6      3 barry          /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/folder3
-Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test
-Info: pysvn command: checkin /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2 -m prop change
+Info: CWD: /home/barry/Projects/pysvn/Extension/Tests/testroot-01/wc1/test
+Info: pysvn command: status --show-updates /home/barry/Projects/pysvn/Extension/Tests/testroot-01/wc2
+       M  /home/barry/Projects/pysvn/Extension/Tests/testroot-01/wc2/test
+       D  /home/barry/Projects/pysvn/Extension/Tests/testroot-01/wc2/test/file2.txt
+       A  /home/barry/Projects/pysvn/Extension/Tests/testroot-01/wc2/test/file2b.txt
+       M  /home/barry/Projects/pysvn/Extension/Tests/testroot-01/wc2/test/file4.txt
+Info: CWD: /home/barry/Projects/pysvn/Extension/Tests/testroot-01/wc1/test
+Info: pysvn command: status --show-updates --verbose /home/barry/Projects/pysvn/Extension/Tests/testroot-01/wc2
+               6      6 barry          /home/barry/Projects/pysvn/Extension/Tests/testroot-01/wc2
+       M       6      6 barry          /home/barry/Projects/pysvn/Extension/Tests/testroot-01/wc2/test
+               6      6 barry          /home/barry/Projects/pysvn/Extension/Tests/testroot-01/wc2/test/file1.txt
+              11     11 barry          /home/barry/Projects/pysvn/Extension/Tests/testroot-01/wc2/test/file1b.txt
+       D       6      3 barry          /home/barry/Projects/pysvn/Extension/Tests/testroot-01/wc2/test/file2.txt
+       A                               /home/barry/Projects/pysvn/Extension/Tests/testroot-01/wc2/test/file2b.txt
+              11     11 barry          /home/barry/Projects/pysvn/Extension/Tests/testroot-01/wc2/test/file3b.txt
+       M       6      3 barry          /home/barry/Projects/pysvn/Extension/Tests/testroot-01/wc2/test/file4.txt
+               6      3 barry          /home/barry/Projects/pysvn/Extension/Tests/testroot-01/wc2/test/file5.txt
+               6      3 barry          /home/barry/Projects/pysvn/Extension/Tests/testroot-01/wc2/test/folder1
+               6      3 barry          /home/barry/Projects/pysvn/Extension/Tests/testroot-01/wc2/test/folder1/file7.txt
+               6      3 barry          /home/barry/Projects/pysvn/Extension/Tests/testroot-01/wc2/test/folder1/folder2
+               6      3 barry          /home/barry/Projects/pysvn/Extension/Tests/testroot-01/wc2/test/folder1/folder2/file8.txt
+               6      3 barry          /home/barry/Projects/pysvn/Extension/Tests/testroot-01/wc2/test/folder3
+Info: CWD: /home/barry/Projects/pysvn/Extension/Tests/testroot-01/wc1/test
+Info: pysvn command: checkin /home/barry/Projects/pysvn/Extension/Tests/testroot-01/wc2 -m prop change
 Nothing to commit
 Info: Testing - propdel
-Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test
+Info: CWD: /home/barry/Projects/pysvn/Extension/Tests/testroot-01/wc2/test
 Info: pysvn command: propset test:prop1 del_me file4.txt
-property_added /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file4.txt
-Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test
+property_added /home/barry/Projects/pysvn/Extension/Tests/testroot-01/wc2/test/file4.txt
+Info: CWD: /home/barry/Projects/pysvn/Extension/Tests/testroot-01/wc2/test
 Info: pysvn command: proplist -v file4.txt
 Properties on 'file4.txt':
   test:prop1: del_me
-Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test
+Info: CWD: /home/barry/Projects/pysvn/Extension/Tests/testroot-01/wc2/test
 Info: pysvn command: propdel test:prop1 file4.txt
-property_deleted /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file4.txt
-Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test
+property_deleted /home/barry/Projects/pysvn/Extension/Tests/testroot-01/wc2/test/file4.txt
+Info: CWD: /home/barry/Projects/pysvn/Extension/Tests/testroot-01/wc2/test
 Info: pysvn command: proplist -v file4.txt
 Info: Testing - propget
-Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test
+Info: CWD: /home/barry/Projects/pysvn/Extension/Tests/testroot-01/wc2/test
 Info: pysvn command: propset svn:eol-style native file4.txt
-property_added /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file4.txt
-Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test
+property_added /home/barry/Projects/pysvn/Extension/Tests/testroot-01/wc2/test/file4.txt
+Info: CWD: /home/barry/Projects/pysvn/Extension/Tests/testroot-01/wc2/test
 Info: pysvn command: propget svn:eol-style file4.txt
-/Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file4.txt: native
-Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test
+/home/barry/Projects/pysvn/Extension/Tests/testroot-01/wc2/test/file4.txt: native
+Info: CWD: /home/barry/Projects/pysvn/Extension/Tests/testroot-01/wc2/test
 Info: pysvn command: propget unknown file4.txt
 Info: Testing - proplist - see above
 Info: Testing - propset
-Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test
+Info: CWD: /home/barry/Projects/pysvn/Extension/Tests/testroot-01/wc2/test
 Info: pysvn command: proplist -v file4.txt
 Properties on 'file4.txt':
   svn:eol-style: native
-Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test
+Info: CWD: /home/barry/Projects/pysvn/Extension/Tests/testroot-01/wc2/test
 Info: pysvn command: propset svn:eol-style native file4.txt
-property_modified /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file4.txt
-Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test
+property_modified /home/barry/Projects/pysvn/Extension/Tests/testroot-01/wc2/test/file4.txt
+Info: CWD: /home/barry/Projects/pysvn/Extension/Tests/testroot-01/wc2/test
 Info: pysvn command: proplist -v file4.txt
 Properties on 'file4.txt':
   svn:eol-style: native
 Info: Testing - remove
-Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test
+Info: CWD: /home/barry/Projects/pysvn/Extension/Tests/testroot-01/wc2/test
 Info: pysvn command: remove file5.txt
-D /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file5.txt
-Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test
+D /home/barry/Projects/pysvn/Extension/Tests/testroot-01/wc2/test/file5.txt
+Info: CWD: /home/barry/Projects/pysvn/Extension/Tests/testroot-01/wc2/test
 Info: pysvn command: status
  M     file4.txt
 D      file5.txt
 Info: Testing - resolved
-Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test
-Info: pysvn command: checkin /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test -m make a conflict part 1
-M /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test/file4.txt
+Info: CWD: /home/barry/Projects/pysvn/Extension/Tests/testroot-01/wc2/test
+Info: pysvn command: checkin /home/barry/Projects/pysvn/Extension/Tests/testroot-01/wc1/test -m make a conflict part 1
+M /home/barry/Projects/pysvn/Extension/Tests/testroot-01/wc1/test/file4.txt
 commit_finalizing .
 Revision 13
-Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test
-Info: pysvn command: update /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test
+Info: CWD: /home/barry/Projects/pysvn/Extension/Tests/testroot-01/wc2/test
+Info: pysvn command: update /home/barry/Projects/pysvn/Extension/Tests/testroot-01/wc2/test
 callback_conflict_resolver
   action: <conflict_action.edit>
-  base_file: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file4.txt.r6
+  base_file: /home/barry/Projects/pysvn/Extension/Tests/testroot-01/wc2/test/file4.txt.r6
   is_binary: False
   kind: <conflict_kind.text>
-  merged_file: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file4.txt
+  merged_file: /home/barry/Projects/pysvn/Extension/Tests/testroot-01/wc2/test/file4.txt
   mime_type: None
-  my_file: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file4.txt.mine
+  my_file: /home/barry/Projects/pysvn/Extension/Tests/testroot-01/wc2/test/file4.txt.mine
   node_kind: <node_kind.file>
   operation: <wc_operation.none>
-  path: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file4.txt
+  path: /home/barry/Projects/pysvn/Extension/Tests/testroot-01/wc2/test/file4.txt
   property_name: None
   reason: <conflict_reason.edited>
-  src_left_version: {'node_kind': <node_kind.file>, 'path_in_repos': 'trunk/test/file4.txt', 'peg_rev': <Revision kind=number 6>, 'repos_url': 'file:///Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/repos'}
-  src_right_version: {'node_kind': <node_kind.file>, 'path_in_repos': 'trunk/test/file4.txt', 'peg_rev': <Revision kind=number 13>, 'repos_url': 'file:///Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/repos'}
-  their_file: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file4.txt.r13
-A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file2b.txt
-D /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file2.txt
-U /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2
-U /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test
-U /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file4.txt
-conflict_resolver_done /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file4.txt
-conflict_resolver_starting /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file4.txt
-update_started /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test
+  src_left_version: {'node_kind': <node_kind.file>, 'path_in_repos': 'trunk/test/file4.txt', 'peg_rev': <Revision kind=number 6>, 'repos_url': 'file:///home/barry/Projects/pysvn/Extension/Tests/testroot-01/repos'}
+  src_right_version: {'node_kind': <node_kind.file>, 'path_in_repos': 'trunk/test/file4.txt', 'peg_rev': <Revision kind=number 13>, 'repos_url': 'file:///home/barry/Projects/pysvn/Extension/Tests/testroot-01/repos'}
+  their_file: /home/barry/Projects/pysvn/Extension/Tests/testroot-01/wc2/test/file4.txt.r13
+A /home/barry/Projects/pysvn/Extension/Tests/testroot-01/wc2/test/file2b.txt
+D /home/barry/Projects/pysvn/Extension/Tests/testroot-01/wc2/test/file2.txt
+U /home/barry/Projects/pysvn/Extension/Tests/testroot-01/wc2
+U /home/barry/Projects/pysvn/Extension/Tests/testroot-01/wc2/test
+U /home/barry/Projects/pysvn/Extension/Tests/testroot-01/wc2/test/file4.txt
+conflict_resolver_done /home/barry/Projects/pysvn/Extension/Tests/testroot-01/wc2/test/file4.txt
+conflict_resolver_starting /home/barry/Projects/pysvn/Extension/Tests/testroot-01/wc2/test/file4.txt
+update_started /home/barry/Projects/pysvn/Extension/Tests/testroot-01/wc2/test
 Updated to revision 13
-Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test
+Info: CWD: /home/barry/Projects/pysvn/Extension/Tests/testroot-01/wc2/test
 Info: pysvn command: status
 CM     file4.txt
 ?      file4.txt.mine
 ?      file4.txt.r13
 ?      file4.txt.r6
 D      file5.txt
-Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test
-Info: Command: cp /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file4.txt.mine /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file4.txt
-Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test
-Info: pysvn command: resolved /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file4.txt
-R /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file4.txt
-conflict_resolver_done /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file4.txt
-conflict_resolver_starting /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file4.txt
-Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test
-Info: pysvn command: checkin /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file4.txt -m resolve a confict part 2
-M /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file4.txt
+Info: CWD: /home/barry/Projects/pysvn/Extension/Tests/testroot-01/wc2/test
+Info: Command: cp /home/barry/Projects/pysvn/Extension/Tests/testroot-01/wc2/test/file4.txt.mine /home/barry/Projects/pysvn/Extension/Tests/testroot-01/wc2/test/file4.txt
+Info: CWD: /home/barry/Projects/pysvn/Extension/Tests/testroot-01/wc2/test
+Info: pysvn command: resolved /home/barry/Projects/pysvn/Extension/Tests/testroot-01/wc2/test/file4.txt
+R /home/barry/Projects/pysvn/Extension/Tests/testroot-01/wc2/test/file4.txt
+conflict_resolver_done /home/barry/Projects/pysvn/Extension/Tests/testroot-01/wc2/test/file4.txt
+conflict_resolver_starting /home/barry/Projects/pysvn/Extension/Tests/testroot-01/wc2/test/file4.txt
+Info: CWD: /home/barry/Projects/pysvn/Extension/Tests/testroot-01/wc2/test
+Info: pysvn command: checkin /home/barry/Projects/pysvn/Extension/Tests/testroot-01/wc2/test/file4.txt -m resolve a confict part 2
+M /home/barry/Projects/pysvn/Extension/Tests/testroot-01/wc2/test/file4.txt
 commit_finalizing .
 Revision 14
 Info: Testing - revert
-Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test
+Info: CWD: /home/barry/Projects/pysvn/Extension/Tests/testroot-01/wc2/test
 Info: pysvn command: revert file5.txt
-R /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file5.txt
-Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test
+R /home/barry/Projects/pysvn/Extension/Tests/testroot-01/wc2/test/file5.txt
+Info: CWD: /home/barry/Projects/pysvn/Extension/Tests/testroot-01/wc2/test
 Info: pysvn command: status
 Info: Testing - revproplist
-Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test
-Info: pysvn command: revproplist file:///Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/repos/trunk
+Info: CWD: /home/barry/Projects/pysvn/Extension/Tests/testroot-01/wc2/test
+Info: pysvn command: revproplist file:///home/barry/Projects/pysvn/Extension/Tests/testroot-01/repos/trunk
 Revision: 14
 svn:author: barry
-svn:date: 2018-04-01T08:56:09.258530Z
+svn:date: 2022-01-30T11:33:21.578809Z
 svn:log: resolve a confict part 2
 Info: Testing - revpropget
-Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test
-Info: pysvn command: revpropget svn:log file:///Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/repos/trunk
+Info: CWD: /home/barry/Projects/pysvn/Extension/Tests/testroot-01/wc2/test
+Info: pysvn command: revpropget svn:log file:///home/barry/Projects/pysvn/Extension/Tests/testroot-01/repos/trunk
 Revision: 14
 svn:log: resolve a confict part 2
-Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test
-Info: pysvn command: revpropget no_such_prop file:///Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/repos/trunk
+Info: CWD: /home/barry/Projects/pysvn/Extension/Tests/testroot-01/wc2/test
+Info: pysvn command: revpropget no_such_prop file:///home/barry/Projects/pysvn/Extension/Tests/testroot-01/repos/trunk
 Revision: 14
 no_such_prop: None
 Info: Testing - revpropset
-Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test
-Info: pysvn command: revpropset svn:log Hello world file:///Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/repos/trunk
+Info: CWD: /home/barry/Projects/pysvn/Extension/Tests/testroot-01/wc2/test
+Info: pysvn command: revpropset svn:log Hello world file:///home/barry/Projects/pysvn/Extension/Tests/testroot-01/repos/trunk
 Repository has not been enabled to accept revision propchanges;
 ask the administrator to create a pre-revprop-change hook
 Info: Testing - revpropdel
-Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test
-Info: pysvn command: revpropdel svn:log file:///Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/repos/trunk
+Info: CWD: /home/barry/Projects/pysvn/Extension/Tests/testroot-01/wc2/test
+Info: pysvn command: revpropdel svn:log file:///home/barry/Projects/pysvn/Extension/Tests/testroot-01/repos/trunk
 Repository has not been enabled to accept revision propchanges;
 ask the administrator to create a pre-revprop-change hook
 Info: Testing - status - see above
 Info: Testing - relocate
-Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test
-Info: Command: mkdir /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/root
-Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test
-Info: Command: mv /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/repos /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/root
-Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test
-Info: pysvn command: info /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1
-Path: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1
+Info: CWD: /home/barry/Projects/pysvn/Extension/Tests/testroot-01/wc2/test
+Info: Command: mkdir /home/barry/Projects/pysvn/Extension/Tests/testroot-01/root
+Info: CWD: /home/barry/Projects/pysvn/Extension/Tests/testroot-01/wc2/test
+Info: Command: mv /home/barry/Projects/pysvn/Extension/Tests/testroot-01/repos /home/barry/Projects/pysvn/Extension/Tests/testroot-01/root
+Info: CWD: /home/barry/Projects/pysvn/Extension/Tests/testroot-01/wc2/test
+Info: pysvn command: info /home/barry/Projects/pysvn/Extension/Tests/testroot-01/wc1
+Path: /home/barry/Projects/pysvn/Extension/Tests/testroot-01/wc1
 Name: .
-Url: file:///Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/repos/trunk
-Repository UUID: 26afa6a8-5039-46b3-bd95-8bf0b505475b
+Url: file:///home/barry/Projects/pysvn/Extension/Tests/testroot-01/repos/trunk
+Repository UUID: 5e9cb262-bc5e-422c-8c51-8a1f9a4f2951
 Revision: 2
 Node kind: directory
 Schedule: normal
 Last Changed Author: barry
 Last Changed Rev: 2
-Last Changed Date: 01-Apr-2018 09:55:46
-Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test
-Info: pysvn command: relocate file:///Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/repos/trunk file:///Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/root/repos/trunk /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1
-Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test
-Info: pysvn command: info /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1
-Path: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1
+Last Changed Date: 30-Jan-2022 11:33:14
+Info: CWD: /home/barry/Projects/pysvn/Extension/Tests/testroot-01/wc2/test
+Info: pysvn command: relocate file:///home/barry/Projects/pysvn/Extension/Tests/testroot-01/repos/trunk file:///home/barry/Projects/pysvn/Extension/Tests/testroot-01/root/repos/trunk /home/barry/Projects/pysvn/Extension/Tests/testroot-01/wc1
+Info: CWD: /home/barry/Projects/pysvn/Extension/Tests/testroot-01/wc2/test
+Info: pysvn command: info /home/barry/Projects/pysvn/Extension/Tests/testroot-01/wc1
+Path: /home/barry/Projects/pysvn/Extension/Tests/testroot-01/wc1
 Name: .
-Url: file:///Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/root/repos/trunk
-Repository UUID: 26afa6a8-5039-46b3-bd95-8bf0b505475b
+Url: file:///home/barry/Projects/pysvn/Extension/Tests/testroot-01/root/repos/trunk
+Repository UUID: 5e9cb262-bc5e-422c-8c51-8a1f9a4f2951
 Revision: 2
 Node kind: directory
 Schedule: normal
 Last Changed Author: barry
 Last Changed Rev: 2
-Last Changed Date: 01-Apr-2018 09:55:46
-Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test
-Info: pysvn command: info /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2
-Path: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2
+Last Changed Date: 30-Jan-2022 11:33:14
+Info: CWD: /home/barry/Projects/pysvn/Extension/Tests/testroot-01/wc2/test
+Info: pysvn command: info /home/barry/Projects/pysvn/Extension/Tests/testroot-01/wc2
+Path: /home/barry/Projects/pysvn/Extension/Tests/testroot-01/wc2
 Name: .
-Url: file:///Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/repos/trunk
-Repository UUID: 26afa6a8-5039-46b3-bd95-8bf0b505475b
+Url: file:///home/barry/Projects/pysvn/Extension/Tests/testroot-01/repos/trunk
+Repository UUID: 5e9cb262-bc5e-422c-8c51-8a1f9a4f2951
 Revision: 6
 Node kind: directory
 Schedule: normal
 Last Changed Author: barry
 Last Changed Rev: 6
-Last Changed Date: 01-Apr-2018 09:55:52
-Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test
-Info: pysvn command: relocate file:///Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/repos/trunk file:///Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/root/repos/trunk /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2
-Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test
-Info: pysvn command: info /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2
-Path: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2
+Last Changed Date: 30-Jan-2022 11:33:16
+Info: CWD: /home/barry/Projects/pysvn/Extension/Tests/testroot-01/wc2/test
+Info: pysvn command: relocate file:///home/barry/Projects/pysvn/Extension/Tests/testroot-01/repos/trunk file:///home/barry/Projects/pysvn/Extension/Tests/testroot-01/root/repos/trunk /home/barry/Projects/pysvn/Extension/Tests/testroot-01/wc2
+Info: CWD: /home/barry/Projects/pysvn/Extension/Tests/testroot-01/wc2/test
+Info: pysvn command: info /home/barry/Projects/pysvn/Extension/Tests/testroot-01/wc2
+Path: /home/barry/Projects/pysvn/Extension/Tests/testroot-01/wc2
 Name: .
-Url: file:///Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/root/repos/trunk
-Repository UUID: 26afa6a8-5039-46b3-bd95-8bf0b505475b
+Url: file:///home/barry/Projects/pysvn/Extension/Tests/testroot-01/root/repos/trunk
+Repository UUID: 5e9cb262-bc5e-422c-8c51-8a1f9a4f2951
 Revision: 6
 Node kind: directory
 Schedule: normal
 Last Changed Author: barry
 Last Changed Rev: 6
-Last Changed Date: 01-Apr-2018 09:55:52
+Last Changed Date: 30-Jan-2022 11:33:16
 Info: Testing - switch
-Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test
-Info: pysvn command: info /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2
-Path: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2
+Info: CWD: /home/barry/Projects/pysvn/Extension/Tests/testroot-01/wc2/test
+Info: pysvn command: info /home/barry/Projects/pysvn/Extension/Tests/testroot-01/wc2
+Path: /home/barry/Projects/pysvn/Extension/Tests/testroot-01/wc2
 Name: .
-Url: file:///Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/root/repos/trunk
-Repository UUID: 26afa6a8-5039-46b3-bd95-8bf0b505475b
+Url: file:///home/barry/Projects/pysvn/Extension/Tests/testroot-01/root/repos/trunk
+Repository UUID: 5e9cb262-bc5e-422c-8c51-8a1f9a4f2951
 Revision: 6
 Node kind: directory
 Schedule: normal
 Last Changed Author: barry
 Last Changed Rev: 6
-Last Changed Date: 01-Apr-2018 09:55:52
-Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test
-Info: pysvn command: switch /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2 file:///Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/root/repos/tags/version1
-A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file2.txt
-A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file3.txt
-D /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file1b.txt
-D /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file2b.txt
-D /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file3b.txt
-U /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2
-U /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test
-U /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test/file4.txt
-Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test
-Info: pysvn command: info /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2
-Path: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2
+Last Changed Date: 30-Jan-2022 11:33:16
+Info: CWD: /home/barry/Projects/pysvn/Extension/Tests/testroot-01/wc2/test
+Info: pysvn command: switch /home/barry/Projects/pysvn/Extension/Tests/testroot-01/wc2 file:///home/barry/Projects/pysvn/Extension/Tests/testroot-01/root/repos/tags/version1
+A /home/barry/Projects/pysvn/Extension/Tests/testroot-01/wc2/test/file2.txt
+A /home/barry/Projects/pysvn/Extension/Tests/testroot-01/wc2/test/file3.txt
+D /home/barry/Projects/pysvn/Extension/Tests/testroot-01/wc2/test/file1b.txt
+D /home/barry/Projects/pysvn/Extension/Tests/testroot-01/wc2/test/file2b.txt
+D /home/barry/Projects/pysvn/Extension/Tests/testroot-01/wc2/test/file3b.txt
+U /home/barry/Projects/pysvn/Extension/Tests/testroot-01/wc2
+U /home/barry/Projects/pysvn/Extension/Tests/testroot-01/wc2/test
+U /home/barry/Projects/pysvn/Extension/Tests/testroot-01/wc2/test/file4.txt
+Info: CWD: /home/barry/Projects/pysvn/Extension/Tests/testroot-01/wc2/test
+Info: pysvn command: info /home/barry/Projects/pysvn/Extension/Tests/testroot-01/wc2
+Path: /home/barry/Projects/pysvn/Extension/Tests/testroot-01/wc2
 Name: .
-Url: file:///Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/root/repos/tags/version1
-Repository UUID: 26afa6a8-5039-46b3-bd95-8bf0b505475b
+Url: file:///home/barry/Projects/pysvn/Extension/Tests/testroot-01/root/repos/tags/version1
+Repository UUID: 5e9cb262-bc5e-422c-8c51-8a1f9a4f2951
 Revision: 14
 Node kind: directory
 Schedule: normal
 Last Changed Author: barry
 Last Changed Rev: 8
-Last Changed Date: 01-Apr-2018 09:55:56
+Last Changed Date: 30-Jan-2022 11:33:17
 Info: Testing - update - see above
 Info: Testing - merge
-Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test
-Info: pysvn command: checkout file:///Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/root/repos/trunk /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3
-A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test
-A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test/file1.txt
-A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test/file1b.txt
-A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test/file2b.txt
-A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test/file3b.txt
-A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test/file4.txt
-A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test/file5.txt
-A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test/folder1
-A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test/folder1/file7.txt
-A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test/folder1/folder2
-A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test/folder1/folder2/file8.txt
-A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test/folder3
-U /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3
-update_started /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3
+Info: CWD: /home/barry/Projects/pysvn/Extension/Tests/testroot-01/wc2/test
+Info: pysvn command: checkout file:///home/barry/Projects/pysvn/Extension/Tests/testroot-01/root/repos/trunk /home/barry/Projects/pysvn/Extension/Tests/testroot-01/wc3
+A /home/barry/Projects/pysvn/Extension/Tests/testroot-01/wc3/test
+A /home/barry/Projects/pysvn/Extension/Tests/testroot-01/wc3/test/file1.txt
+A /home/barry/Projects/pysvn/Extension/Tests/testroot-01/wc3/test/file1b.txt
+A /home/barry/Projects/pysvn/Extension/Tests/testroot-01/wc3/test/file2b.txt
+A /home/barry/Projects/pysvn/Extension/Tests/testroot-01/wc3/test/file3b.txt
+A /home/barry/Projects/pysvn/Extension/Tests/testroot-01/wc3/test/file4.txt
+A /home/barry/Projects/pysvn/Extension/Tests/testroot-01/wc3/test/file5.txt
+A /home/barry/Projects/pysvn/Extension/Tests/testroot-01/wc3/test/folder1
+A /home/barry/Projects/pysvn/Extension/Tests/testroot-01/wc3/test/folder1/file7.txt
+A /home/barry/Projects/pysvn/Extension/Tests/testroot-01/wc3/test/folder1/folder2
+A /home/barry/Projects/pysvn/Extension/Tests/testroot-01/wc3/test/folder1/folder2/file8.txt
+A /home/barry/Projects/pysvn/Extension/Tests/testroot-01/wc3/test/folder3
+U /home/barry/Projects/pysvn/Extension/Tests/testroot-01/wc3
+update_started /home/barry/Projects/pysvn/Extension/Tests/testroot-01/wc3
 Checked out revision 14
-Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc2/test
-Info: Command: cd /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test
-Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test
+Info: CWD: /home/barry/Projects/pysvn/Extension/Tests/testroot-01/wc2/test
+Info: Command: cd /home/barry/Projects/pysvn/Extension/Tests/testroot-01/wc3/test
+Info: CWD: /home/barry/Projects/pysvn/Extension/Tests/testroot-01/wc3/test
 Info: pysvn command: add file-merge-1.txt
-A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test/file-merge-1.txt
-Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test
+A /home/barry/Projects/pysvn/Extension/Tests/testroot-01/wc3/test/file-merge-1.txt
+Info: CWD: /home/barry/Projects/pysvn/Extension/Tests/testroot-01/wc3/test
 Info: pysvn command: add file-merge-2.txt
-A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test/file-merge-2.txt
-Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test
+A /home/barry/Projects/pysvn/Extension/Tests/testroot-01/wc3/test/file-merge-2.txt
+Info: CWD: /home/barry/Projects/pysvn/Extension/Tests/testroot-01/wc3/test
 Info: pysvn command: commit -m add test merge files .
-A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test/file-merge-1.txt
-A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test/file-merge-2.txt
+A /home/barry/Projects/pysvn/Extension/Tests/testroot-01/wc3/test/file-merge-1.txt
+A /home/barry/Projects/pysvn/Extension/Tests/testroot-01/wc3/test/file-merge-2.txt
 commit_finalizing .
 Revision 15
-Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test
-Info: pysvn command: copy file:///Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/root/repos/trunk/test file:///Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/root/repos/trunk/test-branch
+Info: CWD: /home/barry/Projects/pysvn/Extension/Tests/testroot-01/wc3/test
+Info: pysvn command: copy file:///home/barry/Projects/pysvn/Extension/Tests/testroot-01/root/repos/trunk/test file:///home/barry/Projects/pysvn/Extension/Tests/testroot-01/root/repos/trunk/test-branch
 Log message
 --- -------
 commit_finalizing .
-Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test
-Info: pysvn command: update /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3
-A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test-branch
-A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test-branch/file-merge-1.txt
-A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test-branch/file-merge-2.txt
-A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test-branch/file1.txt
-A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test-branch/file1b.txt
-A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test-branch/file2b.txt
-A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test-branch/file3b.txt
-A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test-branch/file4.txt
-A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test-branch/file5.txt
-A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test-branch/folder1
-A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test-branch/folder1/file7.txt
-A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test-branch/folder1/folder2
-A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test-branch/folder1/folder2/file8.txt
-A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test-branch/folder3
-U /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3
-update_started /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3
+Info: CWD: /home/barry/Projects/pysvn/Extension/Tests/testroot-01/wc3/test
+Info: pysvn command: update /home/barry/Projects/pysvn/Extension/Tests/testroot-01/wc3
+A /home/barry/Projects/pysvn/Extension/Tests/testroot-01/wc3/test-branch
+A /home/barry/Projects/pysvn/Extension/Tests/testroot-01/wc3/test-branch/file-merge-1.txt
+A /home/barry/Projects/pysvn/Extension/Tests/testroot-01/wc3/test-branch/file-merge-2.txt
+A /home/barry/Projects/pysvn/Extension/Tests/testroot-01/wc3/test-branch/file1.txt
+A /home/barry/Projects/pysvn/Extension/Tests/testroot-01/wc3/test-branch/file1b.txt
+A /home/barry/Projects/pysvn/Extension/Tests/testroot-01/wc3/test-branch/file2b.txt
+A /home/barry/Projects/pysvn/Extension/Tests/testroot-01/wc3/test-branch/file3b.txt
+A /home/barry/Projects/pysvn/Extension/Tests/testroot-01/wc3/test-branch/file4.txt
+A /home/barry/Projects/pysvn/Extension/Tests/testroot-01/wc3/test-branch/file5.txt
+A /home/barry/Projects/pysvn/Extension/Tests/testroot-01/wc3/test-branch/folder1
+A /home/barry/Projects/pysvn/Extension/Tests/testroot-01/wc3/test-branch/folder1/file7.txt
+A /home/barry/Projects/pysvn/Extension/Tests/testroot-01/wc3/test-branch/folder1/folder2
+A /home/barry/Projects/pysvn/Extension/Tests/testroot-01/wc3/test-branch/folder1/folder2/file8.txt
+A /home/barry/Projects/pysvn/Extension/Tests/testroot-01/wc3/test-branch/folder3
+U /home/barry/Projects/pysvn/Extension/Tests/testroot-01/wc3
+update_started /home/barry/Projects/pysvn/Extension/Tests/testroot-01/wc3
 Updated to revision 16
-Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test
+Info: CWD: /home/barry/Projects/pysvn/Extension/Tests/testroot-01/wc3/test
 Info: pysvn command: add file-merge-3.txt
-A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test/file-merge-3.txt
-Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test
+A /home/barry/Projects/pysvn/Extension/Tests/testroot-01/wc3/test/file-merge-3.txt
+Info: CWD: /home/barry/Projects/pysvn/Extension/Tests/testroot-01/wc3/test
 Info: pysvn command: rm file-merge-1.txt
-D /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test/file-merge-1.txt
-Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test
+D /home/barry/Projects/pysvn/Extension/Tests/testroot-01/wc3/test/file-merge-1.txt
+Info: CWD: /home/barry/Projects/pysvn/Extension/Tests/testroot-01/wc3/test
 Info: pysvn command: commit -m change test merge files .
-A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test/file-merge-3.txt
-D /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test/file-merge-1.txt
-M /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test/file-merge-2.txt
+A /home/barry/Projects/pysvn/Extension/Tests/testroot-01/wc3/test/file-merge-3.txt
+D /home/barry/Projects/pysvn/Extension/Tests/testroot-01/wc3/test/file-merge-1.txt
+M /home/barry/Projects/pysvn/Extension/Tests/testroot-01/wc3/test/file-merge-2.txt
 commit_finalizing .
 Revision 17
-Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test
-Info: pysvn command: merge --dry-run --revision 16:17 file:///Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/root/repos/trunk/test /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test-branch
-A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test-branch/file-merge-3.txt
-D /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test-branch/file-merge-1.txt
-U /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test-branch/file-merge-2.txt
-U /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test-branch/file-merge-2.txt
-merge_begin /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test-branch
-merge_completed /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test-branch
-merge_elide_info /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test-branch/file-merge-2.txt
-merge_record_info /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test-branch
-merge_record_info /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test-branch/file-merge-2.txt
-merge_record_info_begin /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test-branch
-merge_record_info_begin /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test-branch/file-merge-2.txt
-Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test
-Info: pysvn command: merge --revision 16:17 file:///Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/root/repos/trunk/test /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test-branch
-merge_completed /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test-branch
-Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test
-Info: pysvn command: status /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test-branch
- M     /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test-branch
-D      /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test-branch/file-merge-1.txt
-M      /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test-branch/file-merge-2.txt
-A  +   /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test-branch/file-merge-3.txt
-Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test
-Info: pysvn command: diff /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test-branch
-Index: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test-branch/file-merge-1.txt
+Info: CWD: /home/barry/Projects/pysvn/Extension/Tests/testroot-01/wc3/test
+Info: pysvn command: merge --dry-run --revision 16:17 file:///home/barry/Projects/pysvn/Extension/Tests/testroot-01/root/repos/trunk/test /home/barry/Projects/pysvn/Extension/Tests/testroot-01/wc3/test-branch
+A /home/barry/Projects/pysvn/Extension/Tests/testroot-01/wc3/test-branch/file-merge-3.txt
+D /home/barry/Projects/pysvn/Extension/Tests/testroot-01/wc3/test-branch/file-merge-1.txt
+U /home/barry/Projects/pysvn/Extension/Tests/testroot-01/wc3/test-branch/file-merge-2.txt
+U /home/barry/Projects/pysvn/Extension/Tests/testroot-01/wc3/test-branch/file-merge-2.txt
+merge_begin /home/barry/Projects/pysvn/Extension/Tests/testroot-01/wc3/test-branch
+merge_completed /home/barry/Projects/pysvn/Extension/Tests/testroot-01/wc3/test-branch
+merge_elide_info /home/barry/Projects/pysvn/Extension/Tests/testroot-01/wc3/test-branch/file-merge-2.txt
+merge_record_info /home/barry/Projects/pysvn/Extension/Tests/testroot-01/wc3/test-branch
+merge_record_info /home/barry/Projects/pysvn/Extension/Tests/testroot-01/wc3/test-branch/file-merge-2.txt
+merge_record_info_begin /home/barry/Projects/pysvn/Extension/Tests/testroot-01/wc3/test-branch
+merge_record_info_begin /home/barry/Projects/pysvn/Extension/Tests/testroot-01/wc3/test-branch/file-merge-2.txt
+Info: CWD: /home/barry/Projects/pysvn/Extension/Tests/testroot-01/wc3/test
+Info: pysvn command: merge --revision 16:17 file:///home/barry/Projects/pysvn/Extension/Tests/testroot-01/root/repos/trunk/test /home/barry/Projects/pysvn/Extension/Tests/testroot-01/wc3/test-branch
+merge_completed /home/barry/Projects/pysvn/Extension/Tests/testroot-01/wc3/test-branch
+Info: CWD: /home/barry/Projects/pysvn/Extension/Tests/testroot-01/wc3/test
+Info: pysvn command: status /home/barry/Projects/pysvn/Extension/Tests/testroot-01/wc3/test-branch
+ M     /home/barry/Projects/pysvn/Extension/Tests/testroot-01/wc3/test-branch
+D      /home/barry/Projects/pysvn/Extension/Tests/testroot-01/wc3/test-branch/file-merge-1.txt
+M      /home/barry/Projects/pysvn/Extension/Tests/testroot-01/wc3/test-branch/file-merge-2.txt
+A  +   /home/barry/Projects/pysvn/Extension/Tests/testroot-01/wc3/test-branch/file-merge-3.txt
+Info: CWD: /home/barry/Projects/pysvn/Extension/Tests/testroot-01/wc3/test
+Info: pysvn command: diff /home/barry/Projects/pysvn/Extension/Tests/testroot-01/wc3/test-branch
+Index: /home/barry/Projects/pysvn/Extension/Tests/testroot-01/wc3/test-branch/file-merge-1.txt
 ===================================================================
---- /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test-branch/file-merge-1.txt	(revision 16)
-+++ /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test-branch/file-merge-1.txt	(nonexistent)
+--- /home/barry/Projects/pysvn/Extension/Tests/testroot-01/wc3/test-branch/file-merge-1.txt	(revision 16)
++++ /home/barry/Projects/pysvn/Extension/Tests/testroot-01/wc3/test-branch/file-merge-1.txt	(nonexistent)
 @@ -1 +0,0 @@
 -test add file merge 1
-Index: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test-branch/file-merge-2.txt
+Index: /home/barry/Projects/pysvn/Extension/Tests/testroot-01/wc3/test-branch/file-merge-2.txt
 ===================================================================
---- /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test-branch/file-merge-2.txt	(revision 16)
-+++ /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test-branch/file-merge-2.txt	(working copy)
+--- /home/barry/Projects/pysvn/Extension/Tests/testroot-01/wc3/test-branch/file-merge-2.txt	(revision 16)
++++ /home/barry/Projects/pysvn/Extension/Tests/testroot-01/wc3/test-branch/file-merge-2.txt	(working copy)
 @@ -1 +1,2 @@
  test add file merge 2
 +modify merge 2
-Index: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test-branch/file-merge-3.txt
+Index: /home/barry/Projects/pysvn/Extension/Tests/testroot-01/wc3/test-branch/file-merge-3.txt
 ===================================================================
-Index: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test-branch
+Index: /home/barry/Projects/pysvn/Extension/Tests/testroot-01/wc3/test-branch
 ===================================================================
---- /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test-branch	(revision 16)
-+++ /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test-branch	(working copy)
+--- /home/barry/Projects/pysvn/Extension/Tests/testroot-01/wc3/test-branch	(revision 16)
++++ /home/barry/Projects/pysvn/Extension/Tests/testroot-01/wc3/test-branch	(working copy)
 
-Property changes on: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test-branch
+Property changes on: /home/barry/Projects/pysvn/Extension/Tests/testroot-01/wc3/test-branch
 ___________________________________________________________________
 Added: svn:mergeinfo
 ## -0,0 +0,1 ##
    Merged /trunk/test:r17
 
-Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test
-Info: Command: /usr/local/bin/python3.5 /Users/barry/wc/svn/pysvn/Extension/Tests/test_01_set_get_tests.py /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/configdir
+Info: CWD: /home/barry/Projects/pysvn/Extension/Tests/testroot-01/wc3/test
+Info: Command: /usr/bin/python /home/barry/Projects/pysvn/Extension/Tests/test_01_set_get_tests.py /home/barry/Projects/pysvn/Extension/Tests/testroot-01/configdir
 Info: test_01_set_get_tests start
 Info: test_01_set_get_tests import pysvn
-Info: test_01_set_get_tests pysvn.Client( /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/configdir )
+Info: test_01_set_get_tests pysvn.Client( /home/barry/Projects/pysvn/Extension/Tests/testroot-01/configdir )
 Info: Initial values
 Info: get_auth_cache() => 1
 Info: get_auto_props() => 0
@@ -843,92 +856,92 @@ Info: get_store_passwords() => 1
 Info: test_01_set_get_tests dealloc Client()
 Info: test_01_set_get_tests done
 Info: Testing - import
-Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test
-Info: pysvn command: mkdir file:///Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/root/repos/trunk/test/import -m test-01 add import
+Info: CWD: /home/barry/Projects/pysvn/Extension/Tests/testroot-01/wc3/test
+Info: pysvn command: mkdir file:///home/barry/Projects/pysvn/Extension/Tests/testroot-01/root/repos/trunk/test/import -m test-01 add import
 commit_finalizing .
-Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test
-Info: pysvn command: import --message no spaces /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/tmp/import1.txt file:///Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/root/repos/trunk/test/import/import-file1.txt
-A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/tmp/import1.txt
+Info: CWD: /home/barry/Projects/pysvn/Extension/Tests/testroot-01/wc3/test
+Info: pysvn command: import --message no spaces /home/barry/Projects/pysvn/Extension/Tests/testroot-01/tmp/import1.txt file:///home/barry/Projects/pysvn/Extension/Tests/testroot-01/root/repos/trunk/test/import/import-file1.txt
+A /home/barry/Projects/pysvn/Extension/Tests/testroot-01/tmp/import1.txt
 commit_finalizing .
-Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test
-Info: pysvn command: import --message space in url /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/tmp/import1.txt file:///Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/root/repos/trunk/test/import/import file1A.txt
-A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/tmp/import1.txt
+Info: CWD: /home/barry/Projects/pysvn/Extension/Tests/testroot-01/wc3/test
+Info: pysvn command: import --message space in url /home/barry/Projects/pysvn/Extension/Tests/testroot-01/tmp/import1.txt file:///home/barry/Projects/pysvn/Extension/Tests/testroot-01/root/repos/trunk/test/import/import file1A.txt
+A /home/barry/Projects/pysvn/Extension/Tests/testroot-01/tmp/import1.txt
 commit_finalizing .
-Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test
-Info: pysvn command: import --message %20 in url /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/tmp/import1.txt file:///Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/root/repos/trunk/test/import/import%20file1B.txt
-A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/tmp/import1.txt
+Info: CWD: /home/barry/Projects/pysvn/Extension/Tests/testroot-01/wc3/test
+Info: pysvn command: import --message %20 in url /home/barry/Projects/pysvn/Extension/Tests/testroot-01/tmp/import1.txt file:///home/barry/Projects/pysvn/Extension/Tests/testroot-01/root/repos/trunk/test/import/import%20file1B.txt
+A /home/barry/Projects/pysvn/Extension/Tests/testroot-01/tmp/import1.txt
 commit_finalizing .
-Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test
-Info: pysvn command: import --message space in file, none in url /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/tmp/import 2.txt file:///Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/root/repos/trunk/test/import/import-file2.txt
-A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/tmp/import 2.txt
+Info: CWD: /home/barry/Projects/pysvn/Extension/Tests/testroot-01/wc3/test
+Info: pysvn command: import --message space in file, none in url /home/barry/Projects/pysvn/Extension/Tests/testroot-01/tmp/import 2.txt file:///home/barry/Projects/pysvn/Extension/Tests/testroot-01/root/repos/trunk/test/import/import-file2.txt
+A /home/barry/Projects/pysvn/Extension/Tests/testroot-01/tmp/import 2.txt
 commit_finalizing .
-Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test
-Info: pysvn command: import --message space in file, space in url /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/tmp/import 2.txt file:///Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/root/repos/trunk/test/import/import file2A.txt
-A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/tmp/import 2.txt
+Info: CWD: /home/barry/Projects/pysvn/Extension/Tests/testroot-01/wc3/test
+Info: pysvn command: import --message space in file, space in url /home/barry/Projects/pysvn/Extension/Tests/testroot-01/tmp/import 2.txt file:///home/barry/Projects/pysvn/Extension/Tests/testroot-01/root/repos/trunk/test/import/import file2A.txt
+A /home/barry/Projects/pysvn/Extension/Tests/testroot-01/tmp/import 2.txt
 commit_finalizing .
-Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test
-Info: pysvn command: import --message space in file, %20 in url /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/tmp/import 2.txt file:///Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/root/repos/trunk/test/import/import%20file2B.txt
-A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/tmp/import 2.txt
+Info: CWD: /home/barry/Projects/pysvn/Extension/Tests/testroot-01/wc3/test
+Info: pysvn command: import --message space in file, %20 in url /home/barry/Projects/pysvn/Extension/Tests/testroot-01/tmp/import 2.txt file:///home/barry/Projects/pysvn/Extension/Tests/testroot-01/root/repos/trunk/test/import/import%20file2B.txt
+A /home/barry/Projects/pysvn/Extension/Tests/testroot-01/tmp/import 2.txt
 commit_finalizing .
-Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test
-Info: pysvn command: update /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1
-A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test-branch
-A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test-branch/file-merge-1.txt
-A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test-branch/file-merge-2.txt
-A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test-branch/file1.txt
-A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test-branch/file1b.txt
-A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test-branch/file2b.txt
-A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test-branch/file3b.txt
-A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test-branch/file4.txt
-A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test-branch/file5.txt
-A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test-branch/folder1
-A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test-branch/folder1/file7.txt
-A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test-branch/folder1/folder2
-A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test-branch/folder1/folder2/file8.txt
-A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test-branch/folder3
-A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test/file-merge-2.txt
-A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test/file-merge-3.txt
-A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test/import
-A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test/import/import file1A.txt
-A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test/import/import file1B.txt
-A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test/import/import file2A.txt
-A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test/import/import file2B.txt
-A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test/import/import-file1.txt
-A /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test/import/import-file2.txt
-U /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1
-U /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test
-U /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1/test/file4.txt
-update_started /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1
+Info: CWD: /home/barry/Projects/pysvn/Extension/Tests/testroot-01/wc3/test
+Info: pysvn command: update /home/barry/Projects/pysvn/Extension/Tests/testroot-01/wc1
+A /home/barry/Projects/pysvn/Extension/Tests/testroot-01/wc1/test-branch
+A /home/barry/Projects/pysvn/Extension/Tests/testroot-01/wc1/test-branch/file-merge-1.txt
+A /home/barry/Projects/pysvn/Extension/Tests/testroot-01/wc1/test-branch/file-merge-2.txt
+A /home/barry/Projects/pysvn/Extension/Tests/testroot-01/wc1/test-branch/file1.txt
+A /home/barry/Projects/pysvn/Extension/Tests/testroot-01/wc1/test-branch/file1b.txt
+A /home/barry/Projects/pysvn/Extension/Tests/testroot-01/wc1/test-branch/file2b.txt
+A /home/barry/Projects/pysvn/Extension/Tests/testroot-01/wc1/test-branch/file3b.txt
+A /home/barry/Projects/pysvn/Extension/Tests/testroot-01/wc1/test-branch/file4.txt
+A /home/barry/Projects/pysvn/Extension/Tests/testroot-01/wc1/test-branch/file5.txt
+A /home/barry/Projects/pysvn/Extension/Tests/testroot-01/wc1/test-branch/folder1
+A /home/barry/Projects/pysvn/Extension/Tests/testroot-01/wc1/test-branch/folder1/file7.txt
+A /home/barry/Projects/pysvn/Extension/Tests/testroot-01/wc1/test-branch/folder1/folder2
+A /home/barry/Projects/pysvn/Extension/Tests/testroot-01/wc1/test-branch/folder1/folder2/file8.txt
+A /home/barry/Projects/pysvn/Extension/Tests/testroot-01/wc1/test-branch/folder3
+A /home/barry/Projects/pysvn/Extension/Tests/testroot-01/wc1/test/file-merge-2.txt
+A /home/barry/Projects/pysvn/Extension/Tests/testroot-01/wc1/test/file-merge-3.txt
+A /home/barry/Projects/pysvn/Extension/Tests/testroot-01/wc1/test/import
+A /home/barry/Projects/pysvn/Extension/Tests/testroot-01/wc1/test/import/import file1A.txt
+A /home/barry/Projects/pysvn/Extension/Tests/testroot-01/wc1/test/import/import file1B.txt
+A /home/barry/Projects/pysvn/Extension/Tests/testroot-01/wc1/test/import/import file2A.txt
+A /home/barry/Projects/pysvn/Extension/Tests/testroot-01/wc1/test/import/import file2B.txt
+A /home/barry/Projects/pysvn/Extension/Tests/testroot-01/wc1/test/import/import-file1.txt
+A /home/barry/Projects/pysvn/Extension/Tests/testroot-01/wc1/test/import/import-file2.txt
+U /home/barry/Projects/pysvn/Extension/Tests/testroot-01/wc1
+U /home/barry/Projects/pysvn/Extension/Tests/testroot-01/wc1/test
+U /home/barry/Projects/pysvn/Extension/Tests/testroot-01/wc1/test/file4.txt
+update_started /home/barry/Projects/pysvn/Extension/Tests/testroot-01/wc1
 Updated to revision 24
-Info: CWD: /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc3/test
-Info: pysvn command: log --limit 6 --verbose /Users/barry/wc/svn/pysvn/Extension/Tests/testroot-01/wc1
+Info: CWD: /home/barry/Projects/pysvn/Extension/Tests/testroot-01/wc3/test
+Info: pysvn command: log --limit 6 --verbose /home/barry/Projects/pysvn/Extension/Tests/testroot-01/wc1
 ------------------------------------------------------------
-rev 24: barry | 01-Apr-2018 09:56:21 | 1 lines
+rev 24: barry | 30-Jan-2022 11:33:25 | 1 lines
 Changed paths:
   A /trunk/test/import/import file2B.txt
 space in file, %20 in url
 ------------------------------------------------------------
-rev 23: barry | 01-Apr-2018 09:56:21 | 1 lines
+rev 23: barry | 30-Jan-2022 11:33:25 | 1 lines
 Changed paths:
   A /trunk/test/import/import file2A.txt
 space in file, space in url
 ------------------------------------------------------------
-rev 22: barry | 01-Apr-2018 09:56:20 | 1 lines
+rev 22: barry | 30-Jan-2022 11:33:25 | 1 lines
 Changed paths:
   A /trunk/test/import/import-file2.txt
 space in file, none in url
 ------------------------------------------------------------
-rev 21: barry | 01-Apr-2018 09:56:20 | 1 lines
+rev 21: barry | 30-Jan-2022 11:33:25 | 1 lines
 Changed paths:
   A /trunk/test/import/import file1B.txt
 %20 in url
 ------------------------------------------------------------
-rev 20: barry | 01-Apr-2018 09:56:20 | 1 lines
+rev 20: barry | 30-Jan-2022 11:33:24 | 1 lines
 Changed paths:
   A /trunk/test/import/import file1A.txt
 space in url
 ------------------------------------------------------------
-rev 19: barry | 01-Apr-2018 09:56:20 | 1 lines
+rev 19: barry | 30-Jan-2022 11:33:24 | 1 lines
 Changed paths:
   A /trunk/test/import/import-file1.txt
 no spaces
diff --git a/debian/changelog b/debian/changelog
index 6072cee..b18a7a6 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,9 @@
+pysvn (1.9.18-1) UNRELEASED; urgency=low
+
+  * New upstream release.
+
+ -- Debian Janitor <janitor@jelmer.uk>  Mon, 16 May 2022 12:01:00 -0000
+
 pysvn (1.9.15-1) unstable; urgency=medium
 
   [ Debian Janitor ]
diff --git a/debian/patches/00-remove-rt-at-install.patch b/debian/patches/00-remove-rt-at-install.patch
index 37ba9f2..4b4c723 100644
--- a/debian/patches/00-remove-rt-at-install.patch
+++ b/debian/patches/00-remove-rt-at-install.patch
@@ -3,9 +3,11 @@ Description: Remove setup of -Wl and --rpath flags due to binary installation
 Author: Josue Ortega <josue@debian.org>
 Last-Update: 2020-08-16
 
---- a/Source/setup_configure.py
-+++ b/Source/setup_configure.py
-@@ -1307,11 +1307,6 @@
+Index: pysvn/Source/setup_configure.py
+===================================================================
+--- pysvn.orig/Source/setup_configure.py
++++ pysvn/Source/setup_configure.py
+@@ -1307,11 +1307,6 @@ class LinuxCompilerGCC(UnixCompilerGCC):
                  '-L%(SVN_LIB)s',
                  '-L%(APR_LIB)s',
                  ]
diff --git a/debian/patches/0001-fix-multiple-arch-support.patch b/debian/patches/0001-fix-multiple-arch-support.patch
index cd075de..0933952 100644
--- a/debian/patches/0001-fix-multiple-arch-support.patch
+++ b/debian/patches/0001-fix-multiple-arch-support.patch
@@ -7,8 +7,10 @@ Last-Update: 2019-02-21
  Source/setup_configure.py | 40 ++++++++++++++++++++++++++++++++++++++--
  1 file changed, 38 insertions(+), 2 deletions(-)
 
---- a/Source/setup_configure.py
-+++ b/Source/setup_configure.py
+Index: pysvn/Source/setup_configure.py
+===================================================================
+--- pysvn.orig/Source/setup_configure.py
++++ pysvn/Source/setup_configure.py
 @@ -14,6 +14,7 @@
  #
  import sys
@@ -17,7 +19,7 @@ Last-Update: 2019-02-21
  import distutils
  import distutils.sysconfig
  import distutils.util
-@@ -21,6 +22,31 @@
+@@ -21,6 +22,31 @@ import distutils.util
  import xml.dom.minidom
  import xml.sax
  
@@ -49,7 +51,7 @@ Last-Update: 2019-02-21
  class SetupError(Exception):
      pass
  
-@@ -1184,6 +1210,8 @@
+@@ -1184,6 +1210,8 @@ class UnixCompilerGCC(CompilerGCC):
      def __init__( self, setup ):
          CompilerGCC.__init__( self, setup )
  
@@ -58,7 +60,7 @@ Last-Update: 2019-02-21
          self._find_paths_pycxx_dir = [
                          distutils.sysconfig.get_python_inc(), # typical Linux
                          '/usr/include'
-@@ -1210,8 +1238,13 @@
+@@ -1210,8 +1238,13 @@ class UnixCompilerGCC(CompilerGCC):
                          '/usr/local/lib64',                     # typical 64bit Linux
                          '/usr/local/lib',                       # typical *BSD
                          '/usr/pkg/lib',                         # netbsd
@@ -73,7 +75,7 @@ Last-Update: 2019-02-21
          self._find_paths_apr_inc = [
                          '/usr/include/apr-1',                   # typical Linux
                          '/usr/include/apr-1.0',                 # typical Linux
-@@ -1230,8 +1263,11 @@
+@@ -1230,8 +1263,11 @@ class UnixCompilerGCC(CompilerGCC):
                          '/usr/local/lib',                       # typical *BSD
                          '/usr/local/apr/lib',                   # Mac OS X www.metissian.com
                          '/usr/pkg/lib',                         # netbsd