Skip to content

Commit

Permalink
Remove misleading comment
Browse files Browse the repository at this point in the history
  • Loading branch information
dougmassay authored Oct 1, 2024
1 parent 4b19090 commit 22d2e4b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Resource_Files/python3lib/sanitycheck.py
Original file line number Diff line number Diff line change
Expand Up @@ -160,7 +160,7 @@ def parsetag(self, s):
while s[p:p+1] != qt:
p += 1
# Opening quote with no closing quote
if p >= taglen: # Don't cross the next '=' boundary when seeking matching quote
if p >= taglen:
error_msg = 'Attribute "' + aname + '" has unmatched quotes on attribute value'
self.errors.append((self.tag_start[0], self.tag_start[1], error_msg))
self.has_error = True
Expand Down

0 comments on commit 22d2e4b

Please sign in to comment.