mirror of
https://github.com/beetbox/beets.git
synced 2025-12-23 17:13:30 +01:00
Fix E226
This commit is contained in:
parent
d4d3e957b3
commit
4dc3299dc8
1 changed files with 1 additions and 1 deletions
|
|
@ -82,7 +82,7 @@ class IPFSPlugin(BeetsPlugin):
|
|||
|
||||
for linenr, line in enumerate(all_lines):
|
||||
line = line.strip()
|
||||
if linenr == length-1:
|
||||
if linenr == length - 1:
|
||||
# last printed line is the album hash
|
||||
self._log.info("album: {0}", line)
|
||||
lib.ipfs = line
|
||||
|
|
|
|||
Loading…
Reference in a new issue