Skip to content

Commit

Permalink
split tags on \\ instead of \\
Browse files Browse the repository at this point in the history
  • Loading branch information
azuline committed May 6, 2024
1 parent f09045e commit 866becb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion rose/audiotags.py
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@
logger = logging.getLogger(__name__)


TAG_SPLITTER_REGEX = re.compile(r" \\\\ | / |; ?| vs\. ")
TAG_SPLITTER_REGEX = re.compile(r"\\\\| / |; ?| vs\. ")
YEAR_REGEX = re.compile(r"\d{4}$")
DATE_REGEX = re.compile(r"(\d{4})-(\d{2})-(\d{2})")

Expand Down

0 comments on commit 866becb

Please sign in to comment.