# HG changeset patch # User Siddharth Agarwal # Date 1435295936 25200 # Node ID 1c2df7c91cf21e46239b6c84b5517ab8118e4a68 # Parent a69bb29b96388e837ec11dd8eee2afced9a5331c exchange: replace references to 'sopener' with 'svfs' diff -r a69bb29b9638 -r 1c2df7c91cf2 mercurial/exchange.py --- a/mercurial/exchange.py Thu Jun 25 22:17:52 2015 -0700 +++ b/mercurial/exchange.py Thu Jun 25 22:18:56 2015 -0700 @@ -1484,10 +1484,10 @@ (len(entries), total_bytes)) yield '%d %d\n' % (len(entries), total_bytes) - sopener = repo.svfs - oldaudit = sopener.mustaudit + svfs = repo.svfs + oldaudit = svfs.mustaudit debugflag = repo.ui.debugflag - sopener.mustaudit = False + svfs.mustaudit = False try: for name, size in entries: @@ -1496,17 +1496,17 @@ # partially encode name over the wire for backwards compat yield '%s\0%d\n' % (store.encodedir(name), size) if size <= 65536: - fp = sopener(name) + fp = svfs(name) try: data = fp.read(size) finally: fp.close() yield data else: - for chunk in util.filechunkiter(sopener(name), limit=size): + for chunk in util.filechunkiter(svfs(name), limit=size): yield chunk finally: - sopener.mustaudit = oldaudit + svfs.mustaudit = oldaudit def consumestreamclone(repo, fp): """Apply the contents from a streaming clone file.