@@ -114,7 +114,7 @@ def check_id_submission_directories(app_configs, **kwargs):
114114 p = getattr (settings , s )
115115 if not os .path .exists (p ):
116116 errors .append (checks .Critical (
117- "A directory used by the ID submission tool does not\n "
117+ "A directory used by the I-D submission tool does not\n "
118118 "exist at the path given in the settings file. The setting is:\n "
119119 " %s = %s" % (s , p ),
120120 hint = ("Please either update the local settings to point at the correct\n "
@@ -134,7 +134,7 @@ def check_id_submission_files(app_configs, **kwargs):
134134 p = getattr (settings , s )
135135 if not os .path .exists (p ):
136136 errors .append (checks .Critical (
137- "A file used by the ID submission tool does not exist\n "
137+ "A file used by the I-D submission tool does not exist\n "
138138 "at the path given in the settings file. The setting is:\n "
139139 " %s = %s" % (s , p ),
140140 hint = ("Please either update the local settings to point at the correct\n "
@@ -179,7 +179,7 @@ def check_id_submission_checkers(app_configs, **kwargs):
179179 except Exception as e :
180180 errors .append (checks .Critical (
181181 "An exception was raised when trying to import the\n "
182- "draft submission checker class '%s':\n %s" % (checker_path , e ),
182+ "Internet-Draft submission checker class '%s':\n %s" % (checker_path , e ),
183183 hint = "Please check that the class exists and can be imported.\n " ,
184184 id = "datatracker.E0008" ,
185185 ))
@@ -188,15 +188,15 @@ def check_id_submission_checkers(app_configs, **kwargs):
188188 except Exception as e :
189189 errors .append (checks .Critical (
190190 "An exception was raised when trying to instantiate\n "
191- "the draft submission checker class '%s':\n %s" % (checker_path , e ),
191+ "the Internet-Draft submission checker class '%s':\n %s" % (checker_path , e ),
192192 hint = "Please check that the class can be instantiated.\n " ,
193193 id = "datatracker.E0009" ,
194194 ))
195195 continue
196196 for attr in ('name' ,):
197197 if not hasattr (checker , attr ):
198198 errors .append (checks .Critical (
199- "The draft submission checker\n '%s'\n "
199+ "The Internet-Draft submission checker\n '%s'\n "
200200 "has no attribute '%s', which is required" % (checker_path , attr ),
201201 hint = "Please update the class.\n " ,
202202 id = "datatracker.E0010" ,
@@ -207,7 +207,7 @@ def check_id_submission_checkers(app_configs, **kwargs):
207207 break
208208 else :
209209 errors .append (checks .Critical (
210- "The draft submission checker\n '%s'\n "
210+ "The Internet-Draft submission checker\n '%s'\n "
211211 " has no recognised checker method; "
212212 "should be one or more of %s." % (checker_path , checker_methods ),
213213 hint = "Please update the class.\n " ,
0 commit comments