Skip to content

Commit

Permalink
fixed a typo
Browse files Browse the repository at this point in the history
  • Loading branch information
FinalAngel committed Nov 15, 2016
1 parent 3c302be commit 8da55a0
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion README.rst
Expand Up @@ -74,7 +74,7 @@ copying the ``default`` folder inside that directory and renaming it to
The available tags can also be configured, the default choices are: ::

DJANGOCMS_STYLE_TAGS = ['div', 'article', 'section', 'header', 'footer',
'hi', 'h2', 'h3', 'h4', 'h5', 'h6']
'h1', 'h2', 'h3', 'h4', 'h5', 'h6']

NOTICE::

Expand Down
2 changes: 1 addition & 1 deletion djangocms_style/migrations/0003_adapted_fields.py
Expand Up @@ -76,6 +76,6 @@ class Migration(migrations.Migration):
migrations.AlterField(
model_name='style',
name='tag_type',
field=models.CharField(default='div', max_length=255, verbose_name='Tag type', choices=[('div', 'div'), ('article', 'article'), ('section', 'section'), ('header', 'header'), ('footer', 'footer'), ('aside', 'aside'), ('hi', 'hi'), ('h2', 'h2'), ('h3', 'h3'), ('h4', 'h4'), ('h5', 'h5'), ('h6', 'h6')]),
field=models.CharField(default='div', max_length=255, verbose_name='Tag type', choices=[('div', 'div'), ('article', 'article'), ('section', 'section'), ('header', 'header'), ('footer', 'footer'), ('aside', 'aside'), ('h1', 'h1'), ('h2', 'h2'), ('h3', 'h3'), ('h4', 'h4'), ('h5', 'h5'), ('h6', 'h6')]),
),
]
2 changes: 1 addition & 1 deletion djangocms_style/models.py
Expand Up @@ -39,7 +39,7 @@
settings,
'DJANGOCMS_STYLE_TAGS',
['div', 'article', 'section', 'header', 'footer', 'aside',
'hi', 'h2', 'h3', 'h4', 'h5', 'h6'],
'h1', 'h2', 'h3', 'h4', 'h5', 'h6'],
)
TAG_CHOICES = tuple((entry, entry) for entry in TAG_CHOICES)

Expand Down

0 comments on commit 8da55a0

Please sign in to comment.