diff -r 726c4102db9e -r d241e6632669 hgext/lfs/blobstore.py --- a/hgext/lfs/blobstore.py Fri Apr 13 12:39:54 2018 -0400 +++ b/hgext/lfs/blobstore.py Fri Apr 13 14:16:30 2018 -0400 @@ -561,7 +561,7 @@ if defaulturl.scheme in (b'http', b'https'): if defaulturl.path and defaulturl.path[:-1] != b'/': defaulturl.path += b'/' - defaulturl.path = defaulturl.path or b'' + b'.git/info/lfs' + defaulturl.path = (defaulturl.path or b'') + b'.git/info/lfs' url = util.url(bytes(defaulturl)) repo.ui.note(_('lfs: assuming remote store: %s\n') % url)