summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorbescoto <bescoto@2b77aa54-bcbc-44c9-a7ec-4f6cf2b41109>2004-06-06 22:22:17 +0000
committerbescoto <bescoto@2b77aa54-bcbc-44c9-a7ec-4f6cf2b41109>2004-06-06 22:22:17 +0000
commitbeb9ea8cedc7d6fc07f66ca6c54f8f297d93c99c (patch)
treeb5693eb62ffee9558f97c5b92ff26baf64a1df11
parentebe116f4b14449236cdb0d9b5f0686b9c3ee1c9b (diff)
downloadrdiff-backup-beb9ea8cedc7d6fc07f66ca6c54f8f297d93c99c.tar.gz
Added more explanation to version test failure
git-svn-id: http://svn.savannah.nongnu.org/svn/rdiff-backup/branches/r0-12@554 2b77aa54-bcbc-44c9-a7ec-4f6cf2b41109
-rw-r--r--rdiff-backup/rdiff_backup/SetConnections.py9
1 files changed, 7 insertions, 2 deletions
diff --git a/rdiff-backup/rdiff_backup/SetConnections.py b/rdiff-backup/rdiff_backup/SetConnections.py
index 63730f4..e6b52c4 100644
--- a/rdiff-backup/rdiff_backup/SetConnections.py
+++ b/rdiff-backup/rdiff_backup/SetConnections.py
@@ -235,6 +235,11 @@ def test_connection(conn_number):
if not version == Globals.version:
print """Server may work, but there is a version mismatch:
Local version: %s
-Remote version: %s""" % (Globals.version, version)
- else: print "Server OK"
+Remote version: %s
+In general, an attempt is made to guarantee compatibility only between
+different minor versions of the same stable series. For instance, you
+should expect 0.12.4 and 0.12.7 to be compatible, but not 0.12.7
+and 0.13.3, nor 0.13.2 and 0.13.4.
+""" % (Globals.version, version)
+ else: print "Server OK"