summaryrefslogtreecommitdiffstats
path: root/bitbake
diff options
context:
space:
mode:
authorRichard Purdie <rpurdie@linux.intel.com>2009-10-20 11:29:07 +0100
committerRichard Purdie <rpurdie@linux.intel.com>2009-10-20 11:29:07 +0100
commitf310816acbc4c9491fdf4c8917829b07a9669ba0 (patch)
treef484fd1f09520ea06b379110a8c7bcbaea54beaa /bitbake
parentd4fe9e79cfba3d328468999f0b26acd43f24fd32 (diff)
downloadpoky-f310816acbc4c9491fdf4c8917829b07a9669ba0.tar.gz
bitbake: hg fetcher - sync bitbake-dev and remove debug
Signed-off-by: Richard Purdie <rpurdie@linux.intel.com>
Diffstat (limited to 'bitbake')
-rw-r--r--bitbake/lib/bb/fetch/hg.py4
1 files changed, 0 insertions, 4 deletions
diff --git a/bitbake/lib/bb/fetch/hg.py b/bitbake/lib/bb/fetch/hg.py
index 2b0438a26d..b5fd8fecd7 100644
--- a/bitbake/lib/bb/fetch/hg.py
+++ b/bitbake/lib/bb/fetch/hg.py
@@ -158,16 +158,12 @@ class Hg(Fetch):
158 raise t, v, tb 158 raise t, v, tb
159 159
160 def suppports_srcrev(self): 160 def suppports_srcrev(self):
161 import bb
162 bb.error("here")
163 return True 161 return True
164 162
165 def _latest_revision(self, url, ud, d): 163 def _latest_revision(self, url, ud, d):
166 """ 164 """
167 Compute tip revision for the url 165 Compute tip revision for the url
168 """ 166 """
169 import bb
170 bb.error(self._buildhgcommand(ud, d, "info"))
171 output = runfetchcmd(self._buildhgcommand(ud, d, "info"), d) 167 output = runfetchcmd(self._buildhgcommand(ud, d, "info"), d)
172 return output.strip() 168 return output.strip()
173 169