changeset 52642 | 73ab542565e0 |
parent 52639 | 9db77d46de79 |
child 52643 | 5cc8deb96b48 |
--- a/hgext/convert/bzr.py Sun Jan 05 22:00:40 2025 -0500 +++ b/hgext/convert/bzr.py Sun Jan 05 22:12:02 2025 -0500 @@ -332,7 +332,7 @@ changes.append((path, revid)) # populate the mode cache - kind, executable = [e[1] for e in (kind, executable)] + kind, executable = (e[1] for e in (kind, executable)) mode = (executable and b'x') or (kind == 'symlink' and b'l') or b'' self._modecache[(topath, revid)] = mode changes.append((topath, revid))