summaryrefslogtreecommitdiffstats
path: root/bitbake/lib/bb/fetch2/hg.py
diff options
context:
space:
mode:
Diffstat (limited to 'bitbake/lib/bb/fetch2/hg.py')
-rw-r--r--bitbake/lib/bb/fetch2/hg.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/bitbake/lib/bb/fetch2/hg.py b/bitbake/lib/bb/fetch2/hg.py
index ac5825baa9..6a56f8d0cd 100644
--- a/bitbake/lib/bb/fetch2/hg.py
+++ b/bitbake/lib/bb/fetch2/hg.py
@@ -124,7 +124,7 @@ class Hg(FetchMethod):
124 # update sources there 124 # update sources there
125 os.chdir(ud.moddir) 125 os.chdir(ud.moddir)
126 logger.debug(1, "Running %s", updatecmd) 126 logger.debug(1, "Running %s", updatecmd)
127 bb.fetch2.check_network_access(d, updatecmd) 127 bb.fetch2.check_network_access(d, updatecmd, ud.url)
128 runfetchcmd(updatecmd, d) 128 runfetchcmd(updatecmd, d)
129 129
130 else: 130 else:
@@ -134,7 +134,7 @@ class Hg(FetchMethod):
134 bb.mkdirhier(ud.pkgdir) 134 bb.mkdirhier(ud.pkgdir)
135 os.chdir(ud.pkgdir) 135 os.chdir(ud.pkgdir)
136 logger.debug(1, "Running %s", fetchcmd) 136 logger.debug(1, "Running %s", fetchcmd)
137 bb.fetch2.check_network_access(d, fetchcmd) 137 bb.fetch2.check_network_access(d, fetchcmd, ud.url)
138 runfetchcmd(fetchcmd, d) 138 runfetchcmd(fetchcmd, d)
139 139
140 # Even when we clone (fetch), we still need to update as hg's clone 140 # Even when we clone (fetch), we still need to update as hg's clone