Skip to content

Commit

Permalink
Merge branch 'master' of github.com:openstates/openstates
Browse files Browse the repository at this point in the history
  • Loading branch information
jamesturk committed Jun 16, 2017
2 parents 87cec9f + 3afec97 commit a4fcc5a
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion openstates/ca/actions.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@

Rule(r'Approved by the Governor', 'executive-signature'),
Rule(r'Approved by the Governor with item veto',
'executive-veto:line-item'),
'executive-veto-line-item'),
Rule('Vetoed by Governor', 'executive-veto'),
Rule('Vetoed by the Governor', 'executive-veto'),
Rule(r'To Governor', 'executive-receipt'),
Expand Down
2 changes: 1 addition & 1 deletion openstates/co/actions.py
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@
Rule('^Introduced in House', actor='lower'),
Rule('^Governor', actor='executive'),

Rule('Governor Action - Partial Veto', 'executive-veto:line-item'),
Rule('Governor Action - Partial Veto', 'executive-veto-line-item'),
Rule('Sent to the Governor', 'executive-receipt'),
Rule('Governor Action - Signed', 'executive-signature'),
Rule('Governor Signed', 'executive-signature'),
Expand Down
2 changes: 1 addition & 1 deletion openstates/ks/ksapi.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
'gov_avm_336': 'veto-override-passage',
# change sequence
'mot_cgo_200': None, 'mot_cgo_201': None, 'mot_cgo_202': None,
'gov_mg_378': 'executive-veto:line-item',
'gov_mg_378': 'executive-veto-line-item',
'fa_fabc_115': 'failure',
'cr_rsc_292': 'committee-passage-favorable',
'cr_rsc_276': 'committee-passage',
Expand Down
2 changes: 1 addition & 1 deletion openstates/mt/actions.py
Original file line number Diff line number Diff line change
Expand Up @@ -132,7 +132,7 @@
},

# The governor has issued a line-item (partial) veto
"executive-veto:line-item": {
"executive-veto-line-item": {
'rgxs': [
u"Returned with Governor's Line-item Veto",
],
Expand Down
2 changes: 1 addition & 1 deletion openstates/sc/bills.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ def action_type(action):
('Amended and adopted',
['passage', 'amendment-passage']),
('Amended', 'amendment-passage'),
('Certain items vetoed', 'executive-veto:line-item'),
('Certain items vetoed', 'executive-veto-line-item'),
('Committed to', 'referral-committee'),
('Committee Amendment Adopted', 'amendment-passage'),
('Committee Amendment Amended and Adopted',
Expand Down
2 changes: 1 addition & 1 deletion openstates/tn/bills.py
Original file line number Diff line number Diff line change
Expand Up @@ -122,7 +122,7 @@ def __new__(_cls, regex, types=None, stop=True, **kwargs):
Rule('Second reading, passed', ['passage', 'reading-2']),
Rule('Transmitted to Gov. for action.', 'executive-receipt'),
Rule('Transmitted to Governor for his action.', 'executive-receipt'),
Rule('Signed by Governor, but item veto', 'executive-veto:line-item'),
Rule('Signed by Governor, but item veto', 'executive-veto-line-item'),
Rule('Signed by Governor', 'executive-signature'),
Rule('Withdrawn', 'withdrawal'),
Rule('tabled', 'amendment-deferral'),
Expand Down

0 comments on commit a4fcc5a

Please sign in to comment.