mirror of
https://github.com/chibicitiberiu/ytsm.git
synced 2024-02-24 05:43:31 +00:00
Fix migration error which happens on first migrate, when dynamic-preferences models aren't yet created.
This commit is contained in:
parent
5175846310
commit
363852973b
@ -5,7 +5,12 @@ import json
|
|||||||
|
|
||||||
|
|
||||||
def fix_video_provider(apps, schema_editor):
|
def fix_video_provider(apps, schema_editor):
|
||||||
globalPrefs = apps.get_model('dynamic_preferences', 'GlobalPreferenceModel')
|
try:
|
||||||
|
globalPrefs = apps.get_model('dynamic_preferences', 'GlobalPreferenceModel')
|
||||||
|
except LookupError as e:
|
||||||
|
print("Warning: could not get dynamic_preferences model.")
|
||||||
|
return
|
||||||
|
|
||||||
api_key_entries = globalPrefs.objects.filter(name='youtube_api_key')
|
api_key_entries = globalPrefs.objects.filter(name='youtube_api_key')
|
||||||
if len(api_key_entries) < 1:
|
if len(api_key_entries) < 1:
|
||||||
return
|
return
|
||||||
|
Loading…
Reference in New Issue
Block a user