summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--bitbake/lib/bb/fetch/git.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/bitbake/lib/bb/fetch/git.py b/bitbake/lib/bb/fetch/git.py
index e77d2a5b91..9cd538854f 100644
--- a/bitbake/lib/bb/fetch/git.py
+++ b/bitbake/lib/bb/fetch/git.py
@@ -169,7 +169,7 @@ class Git(Fetch):
169 """ 169 """
170 Return a unique key for the url 170 Return a unique key for the url
171 """ 171 """
172 return "git:" + ud.host + ud.path.replace('/', '.') 172 return "git:" + ud.host + ud.path.replace('/', '.') + ud.branch
173 173
174 def _latest_revision(self, url, ud, d): 174 def _latest_revision(self, url, ud, d):
175 """ 175 """