Parcourir la source

[1261] a small wording fix as suggested in review

JINMEI Tatuya il y a 13 ans
Parent
commit
c4344fadc9
1 fichiers modifiés avec 1 ajouts et 1 suppressions
  1. 1 1
      src/bin/xfrin/xfrin.py.in

+ 1 - 1
src/bin/xfrin/xfrin.py.in

@@ -229,7 +229,7 @@ class XfrinInitialSOA(XfrinState):
     def handle_rr(self, conn, rr):
         if rr.get_type() != RRType.SOA():
             raise XfrinProtocolError('First RR in zone transfer must be SOA ('
-                                     + rr.get_type().to_text() + ' given)')
+                                     + rr.get_type().to_text() + ' received)')
         conn._end_serial = get_soa_serial(rr.get_rdata()[0])
 
         # FIXME: we need to check the serial is actually greater than ours.