Skip to content

Commit

Permalink
Merge dc23b44 into 66f2dcb
Browse files Browse the repository at this point in the history
  • Loading branch information
vkurup committed Jul 10, 2015
2 parents 66f2dcb + dc23b44 commit d1e1fdf
Show file tree
Hide file tree
Showing 2 changed files with 21 additions and 2 deletions.
19 changes: 19 additions & 0 deletions rapidsms/migrations/0002_alter_contact_language.py
@@ -0,0 +1,19 @@
# -*- coding: utf-8 -*-
from __future__ import unicode_literals

from django.db import models, migrations


class Migration(migrations.Migration):

dependencies = [
('rapidsms', '0001_initial'),
]

operations = [
migrations.AlterField(
model_name='contact',
name='language',
field=models.CharField(help_text=b'The language which this contact prefers to communicate in, as a W3C language tag. If this field is left blank, RapidSMS will default to the value in LANGUAGE_CODE.', max_length=6, blank=True),
),
]
4 changes: 2 additions & 2 deletions rapidsms/models.py
Expand Up @@ -105,8 +105,8 @@ class ContactBase(models.Model):
help_text="The language which this contact "
"prefers to communicate in, as a W3C "
"language tag. If this field is left blank, "
"RapidSMS will default to: " +
settings.LANGUAGE_CODE)
"RapidSMS will default to the value in "
"LANGUAGE_CODE.")

class Meta:
abstract = True
Expand Down

0 comments on commit d1e1fdf

Please sign in to comment.