diff options
Diffstat (limited to 'bitbake')
-rw-r--r-- | bitbake/lib/bb/fetch/hg.py | 4 |
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): raise t, v, tb def suppports_srcrev(self): - import bb - bb.error("here") return True def _latest_revision(self, url, ud, d): """ Compute tip revision for the url """ - import bb - bb.error(self._buildhgcommand(ud, d, "info")) output = runfetchcmd(self._buildhgcommand(ud, d, "info"), d) return output.strip() |