Skip to content

Commit 31bec6b

Browse files
committed
fix: allow chinese names as pair names
1 parent a730287 commit 31bec6b

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

freqtrade/plugins/pairlist/pairlist_helpers.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ def expand_pairlist(
2828
raise ValueError(f"Wildcard error in {pair_wc}, {err}")
2929

3030
# Remove wildcard pairs that didn't have a match.
31-
result = [element for element in result if re.fullmatch(r"^[A-Za-z0-9:/-]+$", element)]
31+
result = [element for element in result if re.fullmatch(r"^[\w:/-]+$", element)]
3232

3333
else:
3434
for pair_wc in wildcardpl:

0 commit comments

Comments
 (0)