mirror of
https://github.com/beetbox/beets.git
synced 2026-02-24 08:12:54 +01:00
Apparently py34-flake8 wants whitespace around operators.
This commit is contained in:
parent
9fb763e151
commit
349a3260f8
1 changed files with 1 additions and 1 deletions
|
|
@ -92,7 +92,7 @@ class PlayPlugin(BeetsPlugin):
|
|||
command_str = u"{} {}".format(command_str, opts.args)
|
||||
else:
|
||||
if ARGS_MARKER in command_str:
|
||||
command_str = command_str.replace(" "+ARGS_MARKER, "")
|
||||
command_str = command_str.replace(" " + ARGS_MARKER, "")
|
||||
|
||||
# Perform search by album and add folders rather than tracks to
|
||||
# playlist.
|
||||
|
|
|
|||
Loading…
Reference in a new issue