# HG changeset patch # User Yuya Nishihara # Date 1534469069 -32400 # Node ID b892df0766e164fca47d3b04cbc9b774db097eb4 # Parent 485a3349d5eed5718cd93a5b3d598e11a5fa3673 branchmap: strip '\n' read from cache file as before Follows up 2a4bfbb52111. diff -r 485a3349d5ee -r b892df0766e1 mercurial/branchmap.py --- a/mercurial/branchmap.py Fri Aug 17 10:21:25 2018 +0900 +++ b/mercurial/branchmap.py Fri Aug 17 10:24:29 2018 +0900 @@ -40,7 +40,7 @@ def read(repo): try: f = repo.cachevfs(_filename(repo)) - cachekey = next(f).split(" ", 2) + cachekey = next(f).rstrip('\n').split(" ", 2) last, lrev = cachekey[:2] last, lrev = bin(last), int(lrev) filteredhash = None @@ -53,6 +53,7 @@ raise ValueError(r'tip differs') cl = repo.changelog for l in f: + l = l.rstrip('\n') if not l: continue node, state, label = l.split(" ", 2)