Skip to content

Commit

Permalink
be able to have an empty title
Browse files Browse the repository at this point in the history
  • Loading branch information
smahot authored and sheldonkwoodward committed Apr 3, 2020
1 parent 65e65dd commit 420b9fb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pymkv/MKVFile.py
Original file line number Diff line number Diff line change
Expand Up @@ -154,7 +154,7 @@ def command(self, output_path, subprocess=False):

output_path = expanduser(output_path)
command = [self.mkvmerge_path, '-o', output_path]
if self.title:
if self.title is not None:
command.extend(['--title', self.title])
# add tracks
for track in self.tracks:
Expand Down

0 comments on commit 420b9fb

Please sign in to comment.