Skip to content

Commit da361d9

Browse files
committed
Add % as a supported character
Signed-off-by: Chin Yeung Li <[email protected]>
1 parent 426243f commit da361d9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/attributecode/model.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1750,7 +1750,7 @@ def parse_license_expression(lic_expression):
17501750

17511751
def detect_special_char(expression):
17521752
not_support_char = [
1753-
'!', '@', '#', '$', '%', '^', '&', '*', '=', '{', '}',
1753+
'!', '@', '#', '$', '^', '&', '*', '=', '{', '}',
17541754
'|', '[', ']', '\\', ':', ';', '<', '>', '?', ',', '/']
17551755
special_character = []
17561756
for char in not_support_char:

0 commit comments

Comments
 (0)