BIND 10 trac2252, updated. eb8aaf5c3b048047cd1cc138ee4951405bb59ce3 [2252] cleanup: removed unnecessary backslash

BIND 10 source code commits bind10-changes at lists.isc.org
Wed Mar 27 03:51:47 UTC 2013


The branch, trac2252 has been updated
       via  eb8aaf5c3b048047cd1cc138ee4951405bb59ce3 (commit)
      from  c97e9105e1c25d4708d2f153c93c1a29a73c9537 (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 eb8aaf5c3b048047cd1cc138ee4951405bb59ce3
Author: JINMEI Tatuya <jinmei at isc.org>
Date:   Tue Mar 26 20:51:25 2013 -0700

    [2252] cleanup: removed unnecessary backslash

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

Summary of changes:
 src/bin/xfrin/tests/xfrin_test.py |    6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

-----------------------------------------------------------------------
diff --git a/src/bin/xfrin/tests/xfrin_test.py b/src/bin/xfrin/tests/xfrin_test.py
index 1788905..507e986 100644
--- a/src/bin/xfrin/tests/xfrin_test.py
+++ b/src/bin/xfrin/tests/xfrin_test.py
@@ -2150,8 +2150,8 @@ class TestStatisticsXfrinConn(TestXfrinConnection):
         returned value is float type as second. It is rounded at six
         decimal places. After all it deletes _start_time."""
         delta = datetime.now() - self._start_time
-        ret = round(delta.days * 86400 + delta.seconds + \
-                        delta.microseconds * 1E-6, 6)
+        ret = round(delta.days * 86400 + delta.seconds +
+                    delta.microseconds * 1E-6, 6)
         del self._start_time
         return ret
 
@@ -2197,7 +2197,7 @@ class TestStatisticsXfrinAXFRv4(TestStatisticsXfrinConn):
         self.assertEqual(self.conn.do_xfrin(False), XFRIN_OK)
         self._check_updated_statistics({'axfrreq' + self.ipver: 1,
                                         'xfrsuccess': 1,
-                                        'latest_axfr_duration': \
+                                        'latest_axfr_duration':
                                             self._get_dur_time()})
 
     def test_do_soacheck_uptodate(self):



More information about the bind10-changes mailing list