diff options
Diffstat (limited to 'bitbake/lib/bb/fetch2/hg.py')
-rw-r--r-- | bitbake/lib/bb/fetch2/hg.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bitbake/lib/bb/fetch2/hg.py b/bitbake/lib/bb/fetch2/hg.py index 76810abb7d..6927f6111e 100644 --- a/bitbake/lib/bb/fetch2/hg.py +++ b/bitbake/lib/bb/fetch2/hg.py | |||
@@ -62,7 +62,7 @@ class Hg(FetchMethod): | |||
62 | if 'rev' in ud.parm: | 62 | if 'rev' in ud.parm: |
63 | ud.revision = ud.parm['rev'] | 63 | ud.revision = ud.parm['rev'] |
64 | elif not ud.revision: | 64 | elif not ud.revision: |
65 | ud.revision = self.latest_revision(ud.url, ud, d) | 65 | ud.revision = self.latest_revision(ud, d) |
66 | 66 | ||
67 | ud.localfile = data.expand('%s_%s_%s_%s.tar.gz' % (ud.module.replace('/', '.'), ud.host, ud.path.replace('/', '.'), ud.revision), d) | 67 | ud.localfile = data.expand('%s_%s_%s_%s.tar.gz' % (ud.module.replace('/', '.'), ud.host, ud.path.replace('/', '.'), ud.revision), d) |
68 | 68 | ||