summaryrefslogtreecommitdiff
path: root/rdiff-backup/rdiff_backup/Main.py
diff options
context:
space:
mode:
authorowsla <owsla@2b77aa54-bcbc-44c9-a7ec-4f6cf2b41109>2009-03-31 17:43:08 +0000
committerowsla <owsla@2b77aa54-bcbc-44c9-a7ec-4f6cf2b41109>2009-03-31 17:43:08 +0000
commitb7691a0793c3989cc05481d6fb82ad077f1a2249 (patch)
treedf419b79c8d2197d192f0cd4f3949a9f47363dd3 /rdiff-backup/rdiff_backup/Main.py
parent336f5ebeadaa05b01b6756c4a9424e5000861d2e (diff)
downloadrdiff-backup-b7691a0793c3989cc05481d6fb82ad077f1a2249.tar.gz
Don't print "Fatal Error" if --check-destination-dir completed successfully.
git-svn-id: http://svn.savannah.nongnu.org/svn/rdiff-backup/trunk@1051 2b77aa54-bcbc-44c9-a7ec-4f6cf2b41109
Diffstat (limited to 'rdiff-backup/rdiff_backup/Main.py')
-rw-r--r--rdiff-backup/rdiff_backup/Main.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/rdiff-backup/rdiff_backup/Main.py b/rdiff-backup/rdiff_backup/Main.py
index a8bc1dc..ef712ed 100644
--- a/rdiff-backup/rdiff_backup/Main.py
+++ b/rdiff-backup/rdiff_backup/Main.py
@@ -883,7 +883,7 @@ def CheckDest(dest_rp):
Log.FatalError("No destination dir found at %s" % (dest_rp.path,))
elif need_check == 0:
Log.FatalError("Destination dir %s does not need checking" %
- (dest_rp.path,), errlevel = 0)
+ (dest_rp.path,), no_fatal_message = 1, errlevel = 0)
init_user_group_mapping(dest_rp.conn)
dest_rp.conn.regress.Regress(dest_rp)