Skip to content
This repository was archived by the owner on May 10, 2024. It is now read-only.

Commit 420b9fb

Browse files
smahotsheldonkwoodward
authored andcommitted
be able to have an empty title
1 parent 65e65dd commit 420b9fb

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pymkv/MKVFile.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -154,7 +154,7 @@ def command(self, output_path, subprocess=False):
154154

155155
output_path = expanduser(output_path)
156156
command = [self.mkvmerge_path, '-o', output_path]
157-
if self.title:
157+
if self.title is not None:
158158
command.extend(['--title', self.title])
159159
# add tracks
160160
for track in self.tracks:

0 commit comments

Comments
 (0)