Skip to content

Commit

Permalink
minor script fix
Browse files Browse the repository at this point in the history
  • Loading branch information
Yaron Dinur authored and Yaron Dinur committed Jul 1, 2015
1 parent 978aaee commit acd921e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions committeeVotes/management/commands/import_bills_gss.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,9 +19,9 @@
def vote_to_bool(vote):
if not vote or vote == '':
return None
if vote == 'בעד':
if vote == u'בעד':
return True
elif vote == 'נגד':
elif vote == u'נגד':
return False

BILL_FIELDS = [
Expand Down

0 comments on commit acd921e

Please sign in to comment.