From cb071dc7b9674fe6f77b69cfd1547672df788ef5 Mon Sep 17 00:00:00 2001 From: Tim Showers Date: Wed, 3 Aug 2016 18:53:47 -0400 Subject: [PATCH] Added veto action parsers for HI --- openstates/hi/bills.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/openstates/hi/bills.py b/openstates/hi/bills.py index c6d2314d63..81a3c8e39c 100644 --- a/openstates/hi/bills.py +++ b/openstates/hi/bills.py @@ -40,6 +40,10 @@ def categorize_action(action): ('.*Passed Third Reading', 'bill:passed'), ('Enrolled to Governor', 'governor:received'), ('Act ', 'governor:signed'), + # Note, occasionally the gov sends intent to veto then doesn't. So use Vetoed not Veto + ('Vetoed .* line-item', 'governor:vetoed:line-item'), + ('Vetoed', 'governor:vetoed'), + ('Veto overridden', 'bill:veto_override:passed'), # these are for resolutions ('Offered', 'bill:introduced'), ('Adopted', 'bill:passed'),