Skip to content

Commit

Permalink
Merge pull request #1982 from javierwilson/master
Browse files Browse the repository at this point in the history
Fix postcodes_regex for NI (Nicaragua)
  • Loading branch information
mvantellingen committed Jul 13, 2016
2 parents cc7f408 + af69bfc commit 89a4f5c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/oscar/apps/address/abstract_models.py
Original file line number Diff line number Diff line change
Expand Up @@ -155,7 +155,7 @@ class AbstractAddress(models.Model):
'NE': r'^[0-9]{4}$',
'NF': r'^[0-9]{4}$',
'NG': r'^[0-9]{6}$',
'NI': r'^[0-9]{3}-[0-9]{3}-[0-9]$',
'NI': r'^[0-9]{5}$',
'NL': r'^[0-9]{4}[A-Z]{2}$',
'NO': r'^[0-9]{4}$',
'NP': r'^[0-9]{5}$',
Expand Down

0 comments on commit 89a4f5c

Please sign in to comment.