mirror of
https://github.com/beetbox/beets.git
synced 2025-12-28 11:32:30 +01:00
Remove unnecessary escaping on double quotes
This commit is contained in:
parent
686e069bc4
commit
3e35660ff3
1 changed files with 2 additions and 2 deletions
|
|
@ -51,10 +51,10 @@ class HookPlugin(BeetsPlugin):
|
|||
command_pieces = shlex.split(encoded_command)
|
||||
|
||||
if len(command_pieces) == 0:
|
||||
raise ConfigValueError('invalid command \"{0}\"'.format(
|
||||
raise ConfigValueError('invalid command "{0}"'.format(
|
||||
command))
|
||||
|
||||
self._log.debug('Running command \"{0}\" for event \"{1}\"',
|
||||
self._log.debug('Running command "{0}" for event "{1}"',
|
||||
encoded_command, event)
|
||||
|
||||
try:
|
||||
|
|
|
|||
Loading…
Reference in a new issue