Switch to side-by-side view
--- a/Allura/allura/lib/utils.py +++ b/Allura/allura/lib/utils.py @@ -27,7 +27,6 @@ from ew import jinja2_ew as ew from ming.utils import LazyProperty -import pysvn def permanent_redirect(url): try: @@ -418,15 +417,6 @@ return stats -def svn_path_exists(path): - svn = pysvn.Client() - try: - svn.info2(path) - return True - except pysvn.ClientError, e: - return False - - def is_text_file(file): msg = magic.from_buffer(file[:1024]) if ("text" in msg) or ("empty" in msg):