changeset 42057 | 566daffc607d |
parent 41840 | d6569f1e9b37 |
child 43076 | 2372284d9457 |
--- a/mercurial/wireprotov1server.py Wed Jul 19 13:17:49 2017 -0700 +++ b/mercurial/wireprotov1server.py Wed Apr 03 11:21:27 2019 -0700 @@ -345,7 +345,7 @@ one specific branch of many. """ def decodehexstring(s): - return set([binascii.unhexlify(h) for h in s.split(';')]) + return {binascii.unhexlify(h) for h in s.split(';')} manifest = repo.vfs.tryread('pullbundles.manifest') if not manifest: