# HG changeset patch # User Matt Harbison # Date 1511418070 18000 # Node ID 4abfe416925978cce11c0a131801c818d2fd67ba # Parent f8f939a2926c64963a47f58845acca3022ee2a0e largefiles: explicitly set the source and sink types to 'hg' for lfconvert I stumbled into this prior to adding the type indicator on the source and sink, but there's no reason to try to infer the types for this conversion. diff -r f8f939a2926c -r 4abfe4169259 hgext/largefiles/lfcommands.py --- a/hgext/largefiles/lfcommands.py Wed Nov 22 22:38:50 2017 -0500 +++ b/hgext/largefiles/lfcommands.py Thu Nov 23 01:21:10 2017 -0500 @@ -177,7 +177,7 @@ convcmd.converter = converter try: - convcmd.convert(ui, src, dest) + convcmd.convert(ui, src, dest, source_type='hg', dest_type='hg') finally: convcmd.converter = orig success = True