diff options
author | Richard Purdie <rpurdie@linux.intel.com> | 2009-11-04 00:43:13 +0000 |
---|---|---|
committer | Richard Purdie <rpurdie@linux.intel.com> | 2009-11-13 12:15:23 +0000 |
commit | b5a059ff2886a9097c6376d39fb1947a41a4799d (patch) | |
tree | be8e6c2ae69e3ce96211dd2d5ae5de61b8fa8845 /bitbake-dev/lib/bb/fetch/git.py | |
parent | aaf9b6aa5ff4acc6034c505514e02816abc1cd5d (diff) | |
download | openembedded-core-b5a059ff2886a9097c6376d39fb1947a41a4799d.tar.gz openembedded-core-b5a059ff2886a9097c6376d39fb1947a41a4799d.tar.bz2 openembedded-core-b5a059ff2886a9097c6376d39fb1947a41a4799d.zip |
fetch/__init__.py: Try and make the sortable_revision code mode readable
Signed-off-by: Richard Purdie <rpurdie@linux.intel.com>
Diffstat (limited to 'bitbake-dev/lib/bb/fetch/git.py')
-rw-r--r-- | bitbake-dev/lib/bb/fetch/git.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/bitbake-dev/lib/bb/fetch/git.py b/bitbake-dev/lib/bb/fetch/git.py index c811937743..911c5e437f 100644 --- a/bitbake-dev/lib/bb/fetch/git.py +++ b/bitbake-dev/lib/bb/fetch/git.py @@ -145,12 +145,12 @@ class Git(Fetch): def _build_revision(self, url, ud, d): return ud.tag - def _want_sortable_revision(self, url, ud, d): + def _sortable_revision_valid(self, url, ud, d): return bb.data.getVar("BB_GIT_CLONE_FOR_SRCREV", d, True) or False - def _sortable_revision_disabled(self, url, ud, d): + def _sortable_revision(self, url, ud, d): """ - This is only called when _want_sortable_revision called true + This is only called when _sortable_revision_valid called true We will have to get the updated revision. """ |