svn.py, git.py: Sync with bitbake trunk - comment changes
authorRichard Purdie <richard@openedhand.com>
Mon, 27 Nov 2006 08:57:29 +0000 (08:57 +0000)
committerRichard Purdie <richard@openedhand.com>
Mon, 27 Nov 2006 08:57:29 +0000 (08:57 +0000)
git-svn-id: https://svn.o-hand.com/repos/poky/trunk@961 311d38ba-8fff-0310-9ca6-ca027cbcb966

bitbake/lib/bb/fetch/git.py
bitbake/lib/bb/fetch/svn.py

index 75a7629..bb517c9 100644 (file)
@@ -52,7 +52,7 @@ class Git(Fetch):
     """Class to fetch a module or modules from git repositories"""
     def supports(self, url, ud, d):
         """
-        Check to see if a given url can be fetched with cvs.
+        Check to see if a given url can be fetched with git.
         """
         return ud.type in ['git']
 
index b95de2a..a5dc91a 100644 (file)
@@ -4,6 +4,10 @@
 """
 BitBake 'Fetch' implementations
 
+This implementation is for svn. It is based on the cvs implementation.
+
+Copyright (C) 2004 Marcin Juszkiewicz
+
 Classes for obtaining upstream sources for the
 BitBake build tools.