# HG changeset patch # User Augie Fackler # Date 2017-03-12 07:30:15 # Node ID 45347d4a4f07ec988b55191460a9e04bb4e1e55e # Parent 28e3471a21ef4664d034dc3fafea65f420f59d1d manifest: now that node.bin is available, use it directly Previously we were getting it through revlog, which is a little unusual. diff --git a/mercurial/manifest.py b/mercurial/manifest.py --- a/mercurial/manifest.py +++ b/mercurial/manifest.py @@ -38,9 +38,9 @@ def _parsev1(data): prev = l f, n = l.split('\0') if len(n) > 40: - yield f, revlog.bin(n[:40]), n[40:] + yield f, bin(n[:40]), n[40:] else: - yield f, revlog.bin(n), '' + yield f, bin(n), '' def _parsev2(data): metadataend = data.find('\n')