##// END OF EJS Templates
py3: fix curses chunkselector fallback (when diffs are too large) on py3...
Kyle Lippincott -
r44557:19533e4c default
parent child Browse files
Show More
@@ -386,7 +386,7 b' def filterchunks(ui, originalhunks, usec'
386 ui, originalhunks, recordfn, operation
386 ui, originalhunks, recordfn, operation
387 )
387 )
388 except crecordmod.fallbackerror as e:
388 except crecordmod.fallbackerror as e:
389 ui.warn(b'%s\n' % e.message) # pytype: disable=attribute-error
389 ui.warn(b'%s\n' % e)
390 ui.warn(_(b'falling back to text mode\n'))
390 ui.warn(_(b'falling back to text mode\n'))
391
391
392 return patch.filterpatch(ui, originalhunks, match, operation)
392 return patch.filterpatch(ui, originalhunks, match, operation)
General Comments 0
You need to be logged in to leave comments. Login now