From ab2b1fa900fc8d756fa166a116a2cc504a5c3c25 Mon Sep 17 00:00:00 2001 From: Jesse Weinstein Date: Tue, 12 Jan 2016 22:07:02 -0800 Subject: [PATCH] fix different travis-ci flake8 warning --- beets/library.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/beets/library.py b/beets/library.py index 154b2be3c..1c2fac944 100644 --- a/beets/library.py +++ b/beets/library.py @@ -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()