diff --git a/ptulsconv/__init__.py b/ptulsconv/__init__.py index 3397969..3a19e76 100644 --- a/ptulsconv/__init__.py +++ b/ptulsconv/__init__.py @@ -2,6 +2,6 @@ from .ptuls_grammar import protools_text_export_grammar from .ptuls_parser_visitor import DictionaryParserVisitor from .transformations import TimecodeInterpreter -__version__ = '0.6.0' +__version__ = '0.7.0' __author__ = 'Jamie Hardt' __license__ = 'MIT' diff --git a/ptulsconv/commands.py b/ptulsconv/commands.py index 9047c50..f9e971b 100644 --- a/ptulsconv/commands.py +++ b/ptulsconv/commands.py @@ -191,8 +191,10 @@ def convert(input_file, output_format='fmpxml', start=None, end=None, select_ree validate_non_empty_field(parsed, field='QN'), validate_non_empty_field(parsed, field='CN'), validate_non_empty_field(parsed, field='Char'), - validate_dependent_value(parsed, key_field='CN', dependent_field='Char'), - validate_dependent_value(parsed, key_field='CN', dependent_field='Actor'),): + validate_dependent_value(parsed, key_field='CN', + dependent_field='Char'), + validate_dependent_value(parsed, key_field='CN', + dependent_field='Actor'),): print_warning(warning.report_message())