Burma is not on the list of countries which are not allowed to participate in the programs.
diff --git a/app/melange/utils/countries.py b/app/melange/utils/countries.py
index 382a794..3e20204 100644
--- a/app/melange/utils/countries.py
+++ b/app/melange/utils/countries.py
@@ -18,7 +18,7 @@
original list. Also missing are the following US OFAC embargoed and
Commerce Department export-controlled countries:
- Cuba, Iran, Myanmar (formerly Burma), North Korea, Sudan, Syria
+ Cuba, Iran, North Korea, Sudan, Syria
"""
@@ -52,6 +52,7 @@
'Bosnia and Herzegovina': ('.ba', 'Europe'),
'Botswana': ('.bw', 'Africa'),
'Bouvet Island': ('.bv', 'Europe'),
+ 'Burma': ('.mm', 'Asia'),
'Brazil': ('.br', 'South America'),
'British Indian Ocean Territory': ('.io', 'Asia'),
'Brunei Darussalam': ('.bn', 'Asia'),
diff --git a/app/soc/modules/gci/views/profile.py b/app/soc/modules/gci/views/profile.py
index eed0213..edab57b 100644
--- a/app/soc/modules/gci/views/profile.py
+++ b/app/soc/modules/gci/views/profile.py
@@ -92,9 +92,9 @@
# Most of these countries are not even in the countries model, but
# we still list them anyway.
- GCI_UNALLOWED_COUNTRIES = ['Cuba', 'Iran', 'Syria', 'North Korea', 'Sudan',
- 'Myanmar (Burma)', 'Brazil', 'Saudi Arabia',
- 'Italy']
+ GCI_UNALLOWED_COUNTRIES = [
+ 'Cuba', 'Iran', 'Syria', 'North Korea', 'Sudan', 'Brazil',
+ 'Saudi Arabia', 'Italy']
NOT_OPEN_TO_COUNTRY_MSG = ugettext(
'This contest is not open to residents of this country.')
@@ -310,7 +310,7 @@
"""
if 'delete_account' in data.POST:
return self.deleteAccountPostAction(data)
- else: # regular POST request
+ else: # regular POST request
return self.editProfilePostAction(data, check, mutator)
def deleteAccountPostAction(self, data):
diff --git a/app/summerofcode/views/org_app.py b/app/summerofcode/views/org_app.py
index 6c56f8d..3dc60b8 100644
--- a/app/summerofcode/views/org_app.py
+++ b/app/summerofcode/views/org_app.py
@@ -222,7 +222,7 @@
ELIGIBLE_COUNTRY_LABEL = translation.ugettext(
'I hereby declare that the applying organization is not located in '
'any of the countries which are not eligible to participate in the '
- 'program: Iran, Syria, Cuba, Sudan, North Korea and Myanmar (Burma).')
+ 'program: Iran, Syria, Cuba, Sudan, North Korea.')
ORG_APPLICATION_SUBMIT_PAGE_NAME = translation.ugettext(
'Submit application')