mpd: Use same regexp flags everywhere

This commit is contained in:
Stein Magnus Jodal 2013-11-17 15:24:33 +01:00
parent 4cd0f8bd65
commit 3bf4d0e9d1

View File

@ -223,7 +223,7 @@ MPD_SEARCH_QUERY_RE = re.compile(r"""
"? # End of optional quote around the field type
\s # A single space
"[^"]+" # Matching a quoted search string
""", re.VERBOSE)
""", flags=(re.UNICODE | re.VERBOSE))
MPD_SEARCH_QUERY_PART_RE = re.compile(r"""
\b # Only begin matching at word bundaries
@ -246,7 +246,7 @@ MPD_SEARCH_QUERY_PART_RE = re.compile(r"""
"? # End of optional quote around the field type
\s # A single space
"(?P<what>[^"]+)" # Capturing a quoted search string
""", re.VERBOSE)
""", flags=(re.UNICODE | re.VERBOSE))
def query_from_mpd_search_format(mpd_query):