hgext/largefiles/localstore.py
changeset 43077 687b865b95ad
parent 43076 2372284d9457
child 43085 eef9a2d67051
--- a/hgext/largefiles/localstore.py	Sun Oct 06 09:45:02 2019 -0400
+++ b/hgext/largefiles/localstore.py	Sun Oct 06 09:48:39 2019 -0400
@@ -42,9 +42,9 @@
         path = lfutil.findfile(self.remote, hash)
         if not path:
             raise basestore.StoreError(
-                filename, hash, self.url, _("can't get file locally")
+                filename, hash, self.url, _(b"can't get file locally")
             )
-        with open(path, 'rb') as fd:
+        with open(path, b'rb') as fd:
             return lfutil.copyandhash(util.filechunkiter(fd), tmpfile)
 
     def _verifyfiles(self, contents, filestocheck):
@@ -57,7 +57,7 @@
                 )
             if not exists:
                 self.ui.warn(
-                    _('changeset %s: %s references missing %s\n')
+                    _(b'changeset %s: %s references missing %s\n')
                     % (cset, filename, storepath)
                 )
                 failed = True
@@ -65,7 +65,7 @@
                 actualhash = lfutil.hashfile(storepath)
                 if actualhash != expectedhash:
                     self.ui.warn(
-                        _('changeset %s: %s references corrupted %s\n')
+                        _(b'changeset %s: %s references corrupted %s\n')
                         % (cset, filename, storepath)
                     )
                     failed = True