mirror of
https://github.com/beetbox/beets.git
synced 2025-12-28 19:42:42 +01:00
Replace double quotes with single quotes
This commit is contained in:
parent
8b4f349e27
commit
686e069bc4
1 changed files with 1 additions and 1 deletions
|
|
@ -61,7 +61,7 @@ class HookPlugin(BeetsPlugin):
|
|||
subprocess.Popen(command_pieces).wait()
|
||||
except OSError as e:
|
||||
_, _, trace = sys.exc_info()
|
||||
message = "{0}: {1}".format(e, command_pieces[0])
|
||||
message = '{0}: {1}'.format(e, command_pieces[0])
|
||||
|
||||
raise OSError, message, trace
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue