Skip to content

Commit

Permalink
removed manual encoding for targets
Browse files Browse the repository at this point in the history
Needs more testing, windows still behaves unpredictably
  • Loading branch information
Laharah committed Jul 22, 2016
1 parent e86e067 commit a275fae
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion filebottool/pyfilebot.py
Original file line number Diff line number Diff line change
Expand Up @@ -511,7 +511,7 @@ def _build_filebot_arguments(targets,
process_arguments.append(targets)
else:
targets = [os.path.expanduser(os.path.expandvars(target)) for target in targets]
process_arguments += [target.decode("utf8") for target in targets]
process_arguments += targets

return process_arguments

Expand Down

0 comments on commit a275fae

Please sign in to comment.