# HG changeset patch # User Paul Boddie # Date 1508174056 -7200 # Node ID 583355db25f7ea1f42b45db0768577dbcb9d9dc4 # Parent 1ab79777787b8e4f41aea754acd212a210732175 Fixed control-flow error when preparing updated periods. diff -r 1ab79777787b -r 583355db25f7 imiptools/data.py --- a/imiptools/data.py Mon Oct 16 18:38:18 2017 +0200 +++ b/imiptools/data.py Mon Oct 16 19:14:16 2017 +0200 @@ -409,7 +409,7 @@ if mp.origin == "DTSTART" and p.origin != "DTSTART": mp.origin = "DTSTART-RECUR" updated.append((p, mp)) - break + continue # Produce an original-to-null correspondence where cancellation has # occurred. @@ -418,7 +418,7 @@ if recurrenceid: updated.append((p, None)) - break + continue # Produce an identity correspondence where no modification or # cancellation has occurred.