mirror of
https://github.com/beetbox/beets.git
synced 2025-12-24 01:25:47 +01:00
Fix variable reference in stub
This commit is contained in:
parent
e8c8f9fb14
commit
9f8b81a5ad
1 changed files with 1 additions and 1 deletions
|
|
@ -20,7 +20,7 @@ def convert(in_file, out_file, tag):
|
|||
# as UTF-8 bytes.)
|
||||
if platform.system() == 'Windows':
|
||||
in_file = in_file.decode('utf8')
|
||||
out_file = in_file.decode('utf8')
|
||||
out_file = out_file.decode('utf8')
|
||||
|
||||
with open(out_file, 'wb') as out_f:
|
||||
with open(in_file, 'rb') as in_f:
|
||||
|
|
|
|||
Loading…
Reference in a new issue