diff options
-rwxr-xr-x | push.py | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -53,7 +53,7 @@ for s in sender_map: else: break except KeyError: - next + continue else: print("Found no matching sender.", file=sys.stderr) sys.exit(1) @@ -70,7 +70,7 @@ for r in recipient_map: else: break except KeyError: - next + continue else: print("Found no matching receiver.", file=sys.stderr) sys.exit(1) @@ -125,7 +125,7 @@ for user_token in user_tokens: except AttributeError: pass except (IndexError, KeyError): - next # We should not get here (at least not from a KeyError) + continue # We should not get here (at least not from a KeyError) else: user_token = k |