summaryrefslogtreecommitdiffstats
path: root/bitbake/lib/bb/fetch2/git.py
diff options
context:
space:
mode:
Diffstat (limited to 'bitbake/lib/bb/fetch2/git.py')
-rw-r--r--bitbake/lib/bb/fetch2/git.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/bitbake/lib/bb/fetch2/git.py b/bitbake/lib/bb/fetch2/git.py
index c3c089233b..1a8ebe3da8 100644
--- a/bitbake/lib/bb/fetch2/git.py
+++ b/bitbake/lib/bb/fetch2/git.py
@@ -199,7 +199,7 @@ class Git(FetchMethod):
199 depth_default = 1 199 depth_default = 1
200 ud.shallow_depths = collections.defaultdict(lambda: depth_default) 200 ud.shallow_depths = collections.defaultdict(lambda: depth_default)
201 201
202 revs_default = d.getVar("BB_GIT_SHALLOW_REVS", True) 202 revs_default = d.getVar("BB_GIT_SHALLOW_REVS")
203 ud.shallow_revs = [] 203 ud.shallow_revs = []
204 ud.branches = {} 204 ud.branches = {}
205 for pos, name in enumerate(ud.names): 205 for pos, name in enumerate(ud.names):