Hide keyboard shortcuts

Hot-keys on this page

r m x p   toggle line displays

j k   next/prev highlighted chunk

0   (zero) top of page

1   (one) first highlighted chunk

1from django.core.checks import Warning, register 

2 

3 

4@register() 

5def oembed_check(app_configs, **kwargs): 

6 errors = [] 

7 

8 try: 

9 check_failed = False 

10 import oembed 

11 except ImportError: 

12 check_failed = True 

13 

14 if check_failed: 

15 errors.append( 

16 Warning( 

17 'The oembed library is required to use the superdjango.contrib.embeds app.', 

18 hint='Run pip install python-oembed', 

19 obj=None, 

20 id='embeds.W001', 

21 ) 

22 ) 

23 return errors