hgext/remotefilelog/debugcommands.py
changeset 40614 aa588bf40a08
parent 40612 3fa4183e7803
child 40668 feae4d1f5e01
--- a/hgext/remotefilelog/debugcommands.py	Tue Nov 13 18:08:17 2018 +0300
+++ b/hgext/remotefilelog/debugcommands.py	Tue Nov 13 18:08:55 2018 +0300
@@ -176,7 +176,7 @@
 
 def parsefileblob(path, decompress):
     raw = None
-    f = open(path, "r")
+    f = open(path, "rb")
     try:
         raw = f.read()
     finally: