mirror of
https://github.com/beetbox/beets.git
synced 2025-12-06 08:39:17 +01:00
Fix "line too long" Travis CI error
This commit is contained in:
parent
84cf3361ce
commit
4ee5f2ca88
1 changed files with 10 additions and 10 deletions
|
|
@ -27,16 +27,16 @@ import six
|
||||||
|
|
||||||
# Filename field extraction patterns.
|
# Filename field extraction patterns.
|
||||||
PATTERNS = [
|
PATTERNS = [
|
||||||
# Useful patterns.
|
# Useful patterns.
|
||||||
r'^(?P<artist>.+)[\-_](?P<title>.+)[\-_](?P<tag>.*)$',
|
r'^(?P<artist>.+)[\-_](?P<title>.+)[\-_](?P<tag>.*)$',
|
||||||
r'^(?P<track>\d+)[\s.\-_]+(?P<artist>.+)[\-_](?P<title>.+)[\-_](?P<tag>.*)$',
|
r'^(?P<track>\d+)[\s.\-_]+(?P<artist>.+)[\-_](?P<title>.+)[\-_](?P<tag>.*)$',
|
||||||
r'^(?P<artist>.+)[\-_](?P<title>.+)$',
|
r'^(?P<artist>.+)[\-_](?P<title>.+)$',
|
||||||
r'^(?P<track>\d+)[\s.\-_]+(?P<artist>.+)[\-_](?P<title>.+)$',
|
r'^(?P<track>\d+)[\s.\-_]+(?P<artist>.+)[\-_](?P<title>.+)$',
|
||||||
r'^(?P<title>.+)$',
|
r'^(?P<title>.+)$',
|
||||||
r'^(?P<track>\d+)[\s.\-_]+(?P<title>.+)$',
|
r'^(?P<track>\d+)[\s.\-_]+(?P<title>.+)$',
|
||||||
r'^(?P<track>\d+)\s+(?P<title>.+)$',
|
r'^(?P<track>\d+)\s+(?P<title>.+)$',
|
||||||
r'^(?P<title>.+) by (?P<artist>.+)$',
|
r'^(?P<title>.+) by (?P<artist>.+)$',
|
||||||
r'^(?P<track>\d+).*$',
|
r'^(?P<track>\d+).*$',
|
||||||
]
|
]
|
||||||
|
|
||||||
# Titles considered "empty" and in need of replacement.
|
# Titles considered "empty" and in need of replacement.
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue