From be83c3832066ce79a94fe219d5f76acbf97c9fed Mon Sep 17 00:00:00 2001 From: Adrian Sampson Date: Sun, 3 Feb 2013 23:08:25 -0800 Subject: [PATCH] tiny line wrap change --- beets/autotag/__init__.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/beets/autotag/__init__.py b/beets/autotag/__init__.py index be0181c79..fb7e45c46 100644 --- a/beets/autotag/__init__.py +++ b/beets/autotag/__init__.py @@ -67,9 +67,9 @@ def albums_in_dir(path): # and add the current directory. If so, just add the directory # and move on to the next directory. If not, stop collapsing. if collapse_paths: - if (not collapse_pat and collapse_paths[0] in ancestry(root)) or ( - collapse_pat and \ - collapse_pat.match(os.path.basename(root))): + if (not collapse_pat and collapse_paths[0] in ancestry(root)) or \ + (collapse_pat and \ + collapse_pat.match(os.path.basename(root))): # Still collapsing. collapse_paths.append(root) collapse_items += items