##// END OF EJS Templates
transaction: explain why some recovery failed...
marmoute -
r48211:22e21dee default
parent child Browse files
Show More
@@ -94,8 +94,9 b' def _playback('
94 try:
94 try:
95 util.copyfile(backuppath, filepath, checkambig=checkambig)
95 util.copyfile(backuppath, filepath, checkambig=checkambig)
96 backupfiles.append(b)
96 backupfiles.append(b)
97 except IOError:
97 except IOError as exc:
98 report(_(b"failed to recover %s\n") % f)
98 e_msg = stringutil.forcebytestr(exc)
99 report(_(b"failed to recover %s (%s)\n") % (f, e_msg))
99 else:
100 else:
100 target = f or b
101 target = f or b
101 try:
102 try:
General Comments 0
You need to be logged in to leave comments. Login now