BIND 10 trac1456, updated. ba65fbfad4491d439714a05b7ce654aa649a9b46 [1456] fix a few comments and error messages

BIND 10 source code commits bind10-changes at lists.isc.org
Fri May 25 12:35:20 UTC 2012


The branch, trac1456 has been updated
       via  ba65fbfad4491d439714a05b7ce654aa649a9b46 (commit)
      from  1171a27ad52ba03161e66465e4cf5f5ae93a6628 (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -----------------------------------------------------------------
commit ba65fbfad4491d439714a05b7ce654aa649a9b46
Author: Jelte Jansen <jelte at isc.org>
Date:   Fri May 25 14:35:02 2012 +0200

    [1456] fix a few comments and error messages

-----------------------------------------------------------------------

Summary of changes:
 src/lib/python/isc/xfrin/diff.py |    4 +---
 1 file changed, 1 insertion(+), 3 deletions(-)

-----------------------------------------------------------------------
diff --git a/src/lib/python/isc/xfrin/diff.py b/src/lib/python/isc/xfrin/diff.py
index a3cffbb..3520750 100644
--- a/src/lib/python/isc/xfrin/diff.py
+++ b/src/lib/python/isc/xfrin/diff.py
@@ -351,7 +351,6 @@ class Diff:
         Raises a ValueError if the buffer is in single_update_mode.
         """
         if self.__single_update_mode:
-            # This operation is only valid if the multi-update mode
             raise ValueError("Compound buffer requested in single-update mode")
         else:
             return self.__buffer
@@ -369,7 +368,6 @@ class Diff:
         Raises a ValueError if the buffer is not in single_update_mode.
         """
         if not self.__single_update_mode:
-            # This operation is only valid if the multi-update mode
-            raise ValueError("Compound buffer requested in single-update mode")
+            raise ValueError("Separate buffers requested in single-update mode")
         else:
             return (self.__deletions, self.__additions)



More information about the bind10-changes mailing list