From fbf528f06ced30f8373d27b249ba2c5c0463627f Mon Sep 17 00:00:00 2001 From: Benjamin Peterson Date: Mon, 27 Jun 2011 17:59:45 -0500 Subject: [PATCH] remove svn support --- Tools/scripts/patchcheck.py | 3 --- 1 file changed, 3 deletions(-) diff --git a/Tools/scripts/patchcheck.py b/Tools/scripts/patchcheck.py index e767edabd9..b0de2161c7 100644 --- a/Tools/scripts/patchcheck.py +++ b/Tools/scripts/patchcheck.py @@ -38,9 +38,6 @@ def changed_files(): if os.path.isdir('.hg'): vcs = 'hg' cmd = 'hg status --added --modified --no-status' - elif os.path.isdir('.svn'): - vcs = 'svn' - cmd = 'svn status --quiet --non-interactive --ignore-externals' else: sys.exit('need a checkout to get modified files') -- 2.50.0