Skip to content

Commit

Permalink
Added a second check for empty line in bpd after my latest change
Browse files Browse the repository at this point in the history
  • Loading branch information
Matteo Mecucci committed Jun 3, 2012
1 parent df25de8 commit 469fb95
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions beetsplug/bpd/__init__.py
Original file line number Original file line Diff line number Diff line change
Expand Up @@ -587,6 +587,8 @@ def run(self):
if not line: if not line:
break break
line = line.strip() line = line.strip()
if not line:
break
log.debug(line) log.debug(line)


if clist is not None: if clist is not None:
Expand Down

0 comments on commit 469fb95

Please sign in to comment.