# HG changeset patch # User RhodeCode Admin # Date 2023-10-23 19:57:01 # Node ID 14edc9196944e2375a9a0608b79a2840c290633a # Parent c501cb2b062d12f4222eb7a6511d920afdc65660 docs; fixed docstring diff --git a/vcsserver/remote/svn_remote.py b/vcsserver/remote/svn_remote.py --- a/vcsserver/remote/svn_remote.py +++ b/vcsserver/remote/svn_remote.py @@ -182,10 +182,9 @@ class SvnRemote(RemoteBase): return True def is_path_valid_repository(self, wire, path): - # NOTE(marcink): short circuit the check for SVN repo # the repos.open might be expensive to check, but we have one cheap - # pre condition that we can use, to check for 'format' file + # pre-condition that we can use, to check for 'format' file if not os.path.isfile(os.path.join(path, 'format')): return False