Browse Source

git.py: Fix logging vs logger typo

Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Richard Purdie 12 years ago
parent
commit
38a598731b
1 changed files with 1 additions and 1 deletions
  1. 1 1
      lib/bb/fetch2/git.py

+ 1 - 1
lib/bb/fetch2/git.py

@@ -280,7 +280,7 @@ class Git(FetchMethod):
         # Check if we have the rev already
 
         if not os.path.exists(ud.clonedir):
-            logging.debug("GIT repository for %s does not exist in %s.  \
+            logger.debug("GIT repository for %s does not exist in %s.  \
                           Downloading.", url, ud.clonedir)
             self.download(None, ud, d)
             if not os.path.exists(ud.clonedir):