Merge pull request #6 from lxylxy123456/master

Fix Issue 5: allow file name to start with '-'
Thanks lxylxy123456 :)
This commit is contained in:
Mathias Köhler 2018-01-08 13:28:05 +01:00 committed by GitHub
commit be2216e40c
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -55,7 +55,7 @@ class Output(ParameterContainer):
return self
def __iter__(self):
return chain(ParameterContainer.__iter__(self), [self.file_path])
return chain(ParameterContainer.__iter__(self), ['--', self.file_path])
class FFmpegProcess(object):