Updated initial migration for help text changes. Silly Django migrations...
1 files changed, 2 insertions(+), 2 deletions(-)

M trello_broker/migrations/0001_initial.py
M trello_broker/migrations/0001_initial.py +2 -2
@@ 19,7 19,7 @@ class Migration(migrations.Migration):
                 ('modified', models.DateTimeField(default=django.utils.timezone.now)),
                 ('name', models.CharField(help_text='Name of the repo. Used for internal identification', max_length=100)),
                 ('slug', models.SlugField(help_text='Slug ID given by BitBucket for this repository.', max_length=100)),
-                ('access_key', models.CharField(help_text='Secret key used to "authenticate" the request. If saved here the key must be appended to the BitBucket hook URL like so: http://yourserver.com/broker/?access_key=<value stored here>', max_length=100, blank=True)),
+                ('access_key', models.CharField(help_text='Secret key used to "authenticate" the request. If saved here the key must be appended to the BitBucket hook URL like so: http://yourserver.com/broker/?access_key=YOUR_ACCESS_KEY', max_length=100, blank=True)),
             ],
             options={
                 'verbose_name': 'BitBucket Repository',

          
@@ 86,7 86,7 @@ class Migration(migrations.Migration):
                 ('modified', models.DateTimeField(default=django.utils.timezone.now)),
                 ('name', models.CharField(help_text='Name of the account. Used for internal identification', max_length=100)),
                 ('api_key', models.CharField(help_text='Get this from https://trello.com/1/appKey/generate', max_length=100)),
-                ('api_token', models.CharField(help_text='Get this from https://trello.com/1/authorize?key=<your api_key>&name=<Your+App+Name>&expiration=never&response_type=token&scope=read,write', max_length=100)),
+                ('api_token', models.CharField(help_text='Get this from https://trello.com/1/authorize?key=YOUR_API_KEY&name=Your+App+Name&expiration=never&response_type=token&scope=read,write', max_length=100)),
             ],
             options={
                 'verbose_name': 'Trello Token',