Skip to content

Commit 0653da1

Browse files
authored
fix: Modify scope operand to accept hyphens (#156)
1 parent cbf1b96 commit 0653da1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

sdcclient/monitor/dashboard_converters/_dashboard_scope.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ def convert_scope_string_to_expression(scope = None):
3232
| 'in'
3333
;
3434
35-
operand = /[\w\.]+/ ;
35+
operand = /[[a-zA-Z0-9_-]\.]+/ ;
3636
3737
multiple_value
3838
=

0 commit comments

Comments
 (0)