diff options
author | Jannis Leidel <jannis@leidel.info> | 2011-04-30 23:20:34 +0200 |
---|---|---|
committer | Jannis Leidel <jannis@leidel.info> | 2011-04-30 23:20:34 +0200 |
commit | b1f2a9fddaa407cfbee6f249a52129e370800bd1 (patch) | |
tree | f41c2246cb66fe1aac134195fe788bd72baf2853 /pip/vcs/subversion.py | |
parent | 6b6f4947c3b9747bef216ccf31f9c20c8bb255a9 (diff) | |
parent | 743124094bb98e73ff47addb1e3886bc9411c1e1 (diff) | |
download | pip-1.0.1.tar.gz |
Merge branch 'release/1.0.1'1.0.1
Diffstat (limited to 'pip/vcs/subversion.py')
-rw-r--r-- | pip/vcs/subversion.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pip/vcs/subversion.py b/pip/vcs/subversion.py index b1fa40e1b..79c31ec0e 100644 --- a/pip/vcs/subversion.py +++ b/pip/vcs/subversion.py @@ -16,7 +16,7 @@ class Subversion(VersionControl): name = 'svn' dirname = '.svn' repo_name = 'checkout' - schemes = ('svn', 'svn+ssh', 'svn+http', 'svn+https') + schemes = ('svn', 'svn+ssh', 'svn+http', 'svn+https', 'svn+svn') bundle_file = 'svn-checkout.txt' guide = ('# This was an svn checkout; to make it a checkout again run:\n' 'svn checkout --force -r %(rev)s %(url)s .\n') |