fixed some field types, misc

This commit is contained in:
Binh 2011-11-12 15:26:17 -06:00
parent 7772ec679f
commit 97a74c09f9
2 changed files with 6 additions and 3 deletions

View file

@ -1,6 +1,6 @@
from record import *
VERSION = (0, 0, 6)
VERSION = (0, 0, 7)
RECORD_TYPES = [
'SubmitterRecord',
@ -158,4 +158,7 @@ def test_unique_fields():
if r1.employee_first_name.value == r2.employee_first_name.value:
raise ValidationError("Horrible problem involving shared values across records")
#def state_postal_code(state_abbr):
# import enums
# return enums.state_postal_numeric[ state_abbr.upper() ]