From 1df0689e26d78fd24d54e641b6954b7aa7b55131 Mon Sep 17 00:00:00 2001 From: Maximilian Merz Date: Sat, 31 Mar 2018 18:07:17 +0200 Subject: [PATCH] Whitespace --- beets/ui/__init__.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/beets/ui/__init__.py b/beets/ui/__init__.py index 9915e91bf..ccdffabd6 100644 --- a/beets/ui/__init__.py +++ b/beets/ui/__init__.py @@ -700,6 +700,7 @@ def split_into_lines(string, raw_string, width_tuple): result = { 'col': [], 'raw': [] } next_substr_raw = u'' next_substr = u'' + # Iterate over all words. for i in range(len(words_raw)): if i == 0: @@ -709,8 +710,6 @@ def split_into_lines(string, raw_string, width_tuple): pot_substr_raw = ' '.join([next_substr_raw, words_raw[i]]) pot_substr = ' '.join([next_substr, words[i]]) - #print_('pot_substr_raw: {}'.format(pot_substr_raw)) - # Find out if the pot(ential)_substr fits into the next substring. fits_first = \ (len(result['raw']) == 0 and len(pot_substr_raw) <= first_width)