]> code.ossystems Code Review - openembedded-core.git/commitdiff
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 75a7629223d3cd072ca3e73b54b0925192b4b848..bb517c992886c6555ae0cfe6dcde92cd26d74fb8 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 b95de2a79bf7384445b3920e5fa857ef8dce754a..a5dc91aaff3c78e77dfb0ed0beeecae3d535059a 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.