mirror of
https://github.com/beetbox/beets.git
synced 2026-05-24 04:45:46 -04:00
fix different travis-ci flake8 warning
This commit is contained in:
@@ -86,7 +86,8 @@ class PathQuery(dbcore.FieldQuery):
|
||||
colon = query_part.find(':')
|
||||
if colon != -1:
|
||||
query_part = query_part[:colon]
|
||||
return (os.sep in query_part and os.path.exists(syspath(normpath(query_part))))
|
||||
return (os.sep in query_part and
|
||||
os.path.exists(syspath(normpath(query_part))))
|
||||
|
||||
def match(self, item):
|
||||
path = item.path if self.case_sensitive else item.path.lower()
|
||||
|
||||
Reference in New Issue
Block a user