jhbuild r1897 - in trunk: . jhbuild/versioncontrol



Author: fpeters
Date: Sat Feb 16 09:52:11 2008
New Revision: 1897
URL: http://svn.gnome.org/viewvc/jhbuild?rev=1897&view=rev

Log:
* jhbuild/versioncontrol/git.py: added ssh:// url support.
(closes: #515495)



Modified:
   trunk/ChangeLog
   trunk/jhbuild/versioncontrol/git.py

Modified: trunk/jhbuild/versioncontrol/git.py
==============================================================================
--- trunk/jhbuild/versioncontrol/git.py	(original)
+++ trunk/jhbuild/versioncontrol/git.py	Sat Feb 16 09:52:11 2008
@@ -40,6 +40,8 @@
     urlparse.uses_netloc.append('git+ssh')
 if 'git+ssh' not in urlparse.uses_relative:
     urlparse.uses_relative.append('git+ssh')
+if 'ssh' not in urlparse.uses_relative:
+    urlparse.uses_relative.append('ssh')
 
 
 class GitRepository(Repository):



[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]