duplicity-team team mailing list archive
-
duplicity-team team
-
Mailing list archive
-
Message #02574
[Merge] lp:~mterry/duplicity/missing-unicode-escape into lp:duplicity
Michael Terry has proposed merging lp:~mterry/duplicity/missing-unicode-escape into lp:duplicity.
Requested reviews:
duplicity-team (duplicity-team)
Related bugs:
Bug #1356548 in Duplicity: "Duplicity restore fails with UTF-8 chars in --file-to-restore"
https://bugs.launchpad.net/duplicity/+bug/1356548
For more details, see:
https://code.launchpad.net/~mterry/duplicity/missing-unicode-escape/+merge/240780
Convert restore_dir to unicode before printing.
--
https://code.launchpad.net/~mterry/duplicity/missing-unicode-escape/+merge/240780
Your team duplicity-team is requested to review the proposed merge of lp:~mterry/duplicity/missing-unicode-escape into lp:duplicity.
=== modified file 'bin/duplicity'
--- bin/duplicity 2014-10-27 02:27:36 +0000
+++ bin/duplicity 2014-11-05 21:20:49 +0000
@@ -691,7 +691,7 @@
restore_get_patched_rop_iter(col_stats)):
if globals.restore_dir:
log.FatalError(_("%s not found in archive, no files restored.")
- % (globals.restore_dir,),
+ % (util.ufn(globals.restore_dir)),
log.ErrorCode.restore_dir_not_found)
else:
log.FatalError(_("No files found in archive - nothing restored."),
Follow ups