diff options
author | Richard Purdie <richard.purdie@linuxfoundation.org> | 2011-09-17 12:11:04 +0100 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2011-09-17 12:11:18 +0100 |
commit | 92518c5017945d29099b029a7c2bf80261287d6e (patch) | |
tree | f623aa1563b16c3150cc75300687885df413d615 /bitbake/lib/bb/fetch2/git.py | |
parent | dfc13c9ae719ccbcf048c1d5e7cdb7bd6978137d (diff) | |
download | poky-92518c5017945d29099b029a7c2bf80261287d6e.tar.gz |
git.py: Fix logging vs logger typo
(Bitbake rev: 1043bbcd095314e717b372ed69ea6ee5b8a06573)
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'bitbake/lib/bb/fetch2/git.py')
-rw-r--r-- | bitbake/lib/bb/fetch2/git.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bitbake/lib/bb/fetch2/git.py b/bitbake/lib/bb/fetch2/git.py index 9a578ae0be..275536fc9f 100644 --- a/bitbake/lib/bb/fetch2/git.py +++ b/bitbake/lib/bb/fetch2/git.py | |||
@@ -280,7 +280,7 @@ class Git(FetchMethod): | |||
280 | # Check if we have the rev already | 280 | # Check if we have the rev already |
281 | 281 | ||
282 | if not os.path.exists(ud.clonedir): | 282 | if not os.path.exists(ud.clonedir): |
283 | logging.debug("GIT repository for %s does not exist in %s. \ | 283 | logger.debug("GIT repository for %s does not exist in %s. \ |
284 | Downloading.", url, ud.clonedir) | 284 | Downloading.", url, ud.clonedir) |
285 | self.download(None, ud, d) | 285 | self.download(None, ud, d) |
286 | if not os.path.exists(ud.clonedir): | 286 | if not os.path.exists(ud.clonedir): |