From aeaaf288d1e33fb2b6e8af7330a539b3b7d4b3ed Mon Sep 17 00:00:00 2001 From: swalter Date: Sat, 16 Aug 2008 10:47:14 -0400 Subject: [PATCH] svn: recognize file:// URLs --- plugins/svn.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/plugins/svn.py b/plugins/svn.py index 99d500d..6f25051 100644 --- a/plugins/svn.py +++ b/plugins/svn.py @@ -250,7 +250,8 @@ class SvnPlugin(YapCore): if not args: handled = False if (handled and not args[0].startswith("http") - and not args[0].startswith("svn")): + and not args[0].startswith("svn") + and not args[0].startswith("file://")): handled = False if handled and run_command("svn info %s" % args[0]): handled = False -- 2.11.4.GIT