BOM-933: Fix type mismatches in various migrations 4 (#22146)

* fix type mismatch in course_goals  migrations

* fix type mismatch in experiments  migrations

* fix type mismatch in xblock_django  migrations

* fix type mismatch in catalog  migrations

* fix type mismatch in static_replace  migrations

* fix type mismatch in bulk_email  migrations

* fix type mismatch in course_overviews migrations
This commit is contained in:
Manjinder Singh
2019-10-24 13:47:51 -04:00
committed by GitHub
parent 05e9e56d56
commit 7f3045cf75
25 changed files with 47 additions and 47 deletions

View File

@@ -25,7 +25,7 @@ class AssetBaseUrlConfig(ConfigurationModel):
base_url = TextField(
blank=True,
help_text="The alternative hostname to serve static assets from. Should be in the form of hostname[:port]."
help_text=u"The alternative hostname to serve static assets from. Should be in the form of hostname[:port]."
)
@classmethod
@@ -52,8 +52,8 @@ class AssetExcludedExtensionsConfig(ConfigurationModel):
app_label = 'static_replace'
excluded_extensions = TextField(
default='html',
help_text='The file extensions to exclude from canonicalization. No leading period required. ' +
default=u'html',
help_text=u'The file extensions to exclude from canonicalization. No leading period required. ' +
'Values should be space separated i.e. "html svg css"'
)