Commit 91694ff7 authored by owsla's avatar owsla

Fix typo


git-svn-id: http://svn.savannah.nongnu.org/svn/rdiff-backup@1040 2b77aa54-bcbc-44c9-a7ec-4f6cf2b41109
parent c0ff96e3
......@@ -550,7 +550,7 @@ def Restore(src_rp, dest_rp, restore_as_of = None):
dest_rp.conn.fs_abilities.restore_set_globals(dest_rp)
except (OSError, IOError), exc:
print "\n"
Log.FatalError("Could not begin backup due to\n%s" % exc)
Log.FatalError("Could not begin restore due to\n%s" % exc)
init_user_group_mapping(dest_rp.conn)
src_rp = restore_init_quoting(src_rp)
restore_check_backup_dir(restore_root, src_rp, restore_as_of)
......
......@@ -566,7 +566,7 @@ def Restore(src_rp, dest_rp, restore_as_of = None):
dest_rp.conn.fs_abilities.restore_set_globals(dest_rp)
except (OSError, IOError), exc:
print "\n"
Log.FatalError("Could not begin backup due to\n%s" % exc)
Log.FatalError("Could not begin restore due to\n%s" % exc)
init_user_group_mapping(dest_rp.conn)
src_rp = restore_init_quoting(src_rp)
restore_check_backup_dir(restore_root, src_rp, restore_as_of)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment