diff --git a/README.md b/README.md index 10e9bbd..a07704c 100644 --- a/README.md +++ b/README.md @@ -14,7 +14,7 @@ The `pycmx` package parses a CMX 3600 EDL and its most most common variations. read. Event number field and source name field sizes are determined dynamically for each statement for a high level of compliance at the expense of strictness. -* An more relaxed "tolerant" mode allows parsing of an EDL file where columns +* A more relaxed "tolerant" mode allows parsing of an EDL file where columns use non-standard widths. * Preserves relationship between events and individual edits/clips. * Remark or comment fields with common recognized forms are read and diff --git a/pycmx/parse_cmx_statements.py b/pycmx/parse_cmx_statements.py index 5f57489..7408370 100644 --- a/pycmx/parse_cmx_statements.py +++ b/pycmx/parse_cmx_statements.py @@ -60,9 +60,8 @@ def _parse_cmx3600_line(line: str, line_number: int, source_field_len = len(line) - (event_field_len + 65) try: - return _parse_columns_for_standard_form(line, event_field_len, - source_field_len, - line_number) + return _parse_columns_for_standard_form( + line, event_field_len, source_field_len, line_number) except EventFormError: if tolerant: diff --git a/pyproject.toml b/pyproject.toml index 2d3c0fe..913e678 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "pycmx" -version = "1.4.0" +version = "1.5.0" description = "Python CMX 3600 Edit Decision List Parser" authors = ["Jamie Hardt "] license = "MIT"