Skip to content

Commit

Permalink
Merge pull request #426 from omit66/master
Browse files Browse the repository at this point in the history
fix error: global flags not at the start of the expression at position 1
  • Loading branch information
Kronuz committed Apr 14, 2023
2 parents e7f2a87 + 60414f5 commit 73559d0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scss/grammar/expression.py
Expand Up @@ -86,7 +86,7 @@ class SassExpressionScanner(Scanner):
('VAR', '\\$[-a-zA-Z0-9_]+'),
('LITERAL_FUNCTION', '(-moz-calc|-webkit-calc|calc|expression|progid:[\\w.]+)(?=[(])'),
('ALPHA_FUNCTION', 'alpha(?=[(])'),
('OPACITY', '((?i)opacity)'),
('OPACITY', '(?i)(opacity)'),
('URL_FUNCTION', 'url(?=[(])'),
('IF_FUNCTION', 'if(?=[(])'),
('FNCT', '[-a-zA-Z_][-a-zA-Z0-9_]*(?=\\()'),
Expand Down

2 comments on commit 73559d0

@manchandavishal
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@Kronuz hello, Could you please create a new release, so we can consume this fix in the latest release? Thanks

@manchandavishal
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@Kronuz hello any update on creating a new release, so that openstack/horizon can use the latest release which include this fix?

Please sign in to comment.