Commit 352a9407 by Jason Bau

make typo and import fixes

parent 597bfc1d
......@@ -212,7 +212,7 @@ class CmeUserProfile(UserProfile):
('Guyana', 'Guyana'),
('Haiti', 'Haiti'),
('Heard Island And McDonald Is lands', 'Heard Island And McDonald Is lands'),
('Holy See (V.atican City State)', 'Holy See (V.atican City State)'),
('Holy See (Vatican City State)', 'Holy See (Vatican City State)'),
('Honduras', 'Honduras'),
('Hong Kong', 'Hong Kong'),
('Hungary', 'Hungary'),
......@@ -245,8 +245,8 @@ class CmeUserProfile(UserProfile):
('Liechtenstein', 'Liechtenstein'),
('Lithuania', 'Lithuania'),
('Luxembourg', 'Luxembourg'),
('MacAo', 'MacAo'),
('MacEdonia, The Former Yugoslav Republic Of', 'MacEdonia, The Former Yugoslav Republic Of'),
('Macao', 'Macao'),
('Macedonia, The Former Yugoslav Republic Of', 'Macedonia, The Former Yugoslav Republic Of'),
('Madagascar', 'Madagascar'),
('Malawi', 'Malawi'),
('Malaysia', 'Malaysia'),
......@@ -255,7 +255,7 @@ class CmeUserProfile(UserProfile):
('Malta', 'Malta'),
('Marshall Islands', 'Marshall Islands'),
('Martinique', 'Martinique'),
('Mauritan ia', 'Mauritan ia'),
('Mauritania', 'Mauritania'),
('Mauritius', 'Mauritius'),
('Mayotte', 'Mayotte'),
('Mexico', 'Mexico'),
......@@ -282,7 +282,6 @@ class CmeUserProfile(UserProfile):
('Norfolk Island', 'Norfolk Island'),
('Northern Mariana Islands', 'Northern Mariana Islands'),
('Norway', 'Norway'),
('Not Specified', 'Not Specified'),
('Oman', 'Oman'),
('Pakistan', 'Pakistan'),
('Palau', 'Palau'),
......@@ -292,7 +291,7 @@ class CmeUserProfile(UserProfile):
('Paraguay', 'Paraguay'),
('Peru', 'Peru'),
('Philippines', 'Philippines'),
('Pitc.airn', 'Pitc.airn'),
('Pitcairn', 'Pitcairn'),
('Poland', 'Poland'),
('Portugal', 'Portugal'),
('Puerto Rico', 'Puerto Rico'),
......@@ -321,6 +320,7 @@ class CmeUserProfile(UserProfile):
('Somalia', 'Somalia'),
('South Africa', 'South Africa'),
('South Georgia And The South Sandwich Islands', 'South Georgia And The South Sandwich Islands'),
('South Sudan', 'South Sudan'),
('Spain', 'Spain'),
('Sri Lanka', 'Sri Lanka'),
('Sudan', 'Sudan'),
......@@ -329,7 +329,7 @@ class CmeUserProfile(UserProfile):
('Swaziland', 'Swaziland'),
('Sweden', 'Sweden'),
('Switzerland', 'Switzerland'),
('Syrian Alab Republic', 'Syrian Alab Republic'),
('Syrian Arab Republic', 'Syrian Arab Republic'),
('Taiwan', 'Taiwan'),
('Tajikistan', 'Tajikistan'),
('Tanzania, United Republic Of', 'Tanzania, United Republic Of'),
......@@ -347,7 +347,7 @@ class CmeUserProfile(UserProfile):
('U.S. Minor Outlying Islands', 'U.S. Minor Outlying Islands'),
('Uganda', 'Uganda'),
('Ukraine', 'Ukraine'),
('United Alab Emirates', 'United Alab Emirates'),
('United Arab Emirates', 'United Arab Emirates'),
('United Kingdom', 'United Kingdom'),
('Uruguay', 'Uruguay'),
('Uzbekistan', 'Uzbekistan'),
......
......@@ -4,7 +4,7 @@ CME Registration methods
import json
import logging
from statsd import statsd
from dogapi import dog_stats_api
from django_future.csrf import ensure_csrf_cookie
from django.conf import settings
......@@ -144,6 +144,7 @@ def cme_create_account(request, post_override=None):
request.session.set_expiry(0)
redirect_url = student.views.try_change_enrollment(request)
dog_stats_api.increment("common.student.successful_login")
json_string = {'success': True,
'redirect_url': redirect_url}
......@@ -352,7 +353,7 @@ def validate_export_controls(post_vars):
return {
'success': False,
'field': 'country',
'value': 'We are experiencing a temporary system failure. Try again later.' # obfuscated message
'value': 'We are unable to register you at this present time.' # obfuscated message
}
......@@ -361,7 +362,7 @@ DENIED_COUNTRIES = [
'Korea, Democratic People\'s Republic Of',
'Iran, Islamic Republic Of',
'Cuba',
'Syrian Alab Republic',
'Syrian Arab Republic',
]
#Construct dicts for specialty and sub-specialty dropdowns
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment