diff -r 4a409c19831f -r 4a33a6bf2b52 mercurial/patch.py --- a/mercurial/patch.py Mon Jan 21 23:08:31 2019 -0800 +++ b/mercurial/patch.py Sat Jan 26 13:14:21 2019 +0530 @@ -2806,9 +2806,9 @@ line.startswith('Binary file')): isbinary = True elif line.startswith('rename from'): - filename = line.split()[-1] + filename = line[12:] elif line.startswith('rename to'): - filename += ' => %s' % line.split()[-1] + filename += ' => %s' % line[10:] addresult() return results