Browse Source

Add a space in error output.
Change test results file to match change. (I did this first :)
No ChangeLog entry. No review. This is trivial.


git-svn-id: svn://bind10.isc.org/svn/bind10/trunk@3329 e5f2f494-b856-4b98-b285-d166d9295462

Jeremy C. Reed 14 years ago
parent
commit
7d6d5f2d91
2 changed files with 2 additions and 2 deletions
  1. 1 1
      src/bin/loadzone/tests/error/error.known
  2. 1 1
      src/lib/python/isc/datasrc/master.py

+ 1 - 1
src/bin/loadzone/tests/error/error.known

@@ -1,5 +1,5 @@
 Error reading zone file: Cannot parse RR, No $ORIGIN: @ IN SOA ns hostmaster 1 3600 1800 1814400 3600
-Error reading zone file: $ORIGIN is not absolute in record:$ORIGIN com
+Error reading zone file: $ORIGIN is not absolute in record: $ORIGIN com
 Error reading zone file: Cannot parse RR: $TL 300
 Error reading zone file: Cannot parse RR: $OIGIN com.
 Error loading database: Error while loading com.: Cannot parse RR: $INLUDE file.txt

+ 1 - 1
src/lib/python/isc/datasrc/master.py

@@ -269,7 +269,7 @@ class MasterFile:
             if second[-1] == '.':
                 self.__origin = second
             elif not self.__origin:
-                raise MasterFileError("$ORIGIN is not absolute in record:%s" % s)
+                raise MasterFileError("$ORIGIN is not absolute in record: %s" % s)
             elif self.__origin != '.':
                 self.__origin = second + '.' + self.__origin
             else: