Skip to content

Commit

Permalink
Allow * symbol in ef-open lookup (#126)
Browse files Browse the repository at this point in the history
  • Loading branch information
theJWong authored Jul 9, 2019
1 parent 1926b39 commit fc7cc5f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion efopen/ef_template_resolver.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@

# CONSTANTS
# pattern to find resolvable symbols - finds innermost nestings
SYMBOL_PATTERN = r'{{([0-9A-Za-z/_,.:\-\+=]+?)}}'
SYMBOL_PATTERN = r'{{([0-9A-Za-z/_,.:\-\+=\*]+?)}}'
# inverse of SYMBOL_PATTERN, and disallows ':' and ',' from param keys; this is checked in load()
ILLEGAL_PARAMETER_CHARS = r'[^(0-9A-Za-z/_.\-)]'

Expand Down

0 comments on commit fc7cc5f

Please sign in to comment.