Skip to content

Commit

Permalink
none error fix again
Browse files Browse the repository at this point in the history
  • Loading branch information
michael committed Mar 20, 2016
1 parent 85e0de8 commit 4e3685f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion converter/avcodecs.py
Original file line number Diff line number Diff line change
Expand Up @@ -170,7 +170,7 @@ def parse_options(self, opt, stream=0):
s = str(0)

if 'encoding' in safe:
if not safe['encoding'] or safe['encoding'] == "" or safe['encoding'] == "None":
if not safe['encoding'] or safe['encoding'] == "" or safe['encoding'].lower() == "none":
del safe['encoding']

safe = self._codec_specific_parse_options(safe)
Expand Down

0 comments on commit 4e3685f

Please sign in to comment.