Skip to content

Commit

Permalink
Remove problematic change
Browse files Browse the repository at this point in the history
  • Loading branch information
dougmassay authored Oct 1, 2024
1 parent caeb886 commit 4b19090
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 s[p:p+1] == '=' or p >= taglen: # Don't cross the next '=' boundary when seeking matching quote
if p >= taglen: # Don't cross the next '=' boundary when seeking matching quote
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 4b19090

Please sign in to comment.