|
8 | 8 |
|
9 | 9 | :license: FreeBSD and LGPL, see license.* for more details. |
10 | 10 | """ |
| 11 | +# Support for Python 2.7 |
| 12 | +from __future__ import absolute_import, division, print_function, unicode_literals |
| 13 | +from builtins import * |
| 14 | +from future.utils import iteritems |
| 15 | + |
11 | 16 | import warnings |
12 | 17 |
|
13 | 18 | from lxml import etree |
|
18 | 23 | from podgen.not_supported_by_itunes_warning import NotSupportedByItunesWarning |
19 | 24 | from podgen.util import formatRFC2822, listToHumanreadableStr |
20 | 25 | from podgen.compat import string_types |
21 | | -from builtins import str |
22 | | -from future.utils import iteritems |
23 | 26 |
|
24 | 27 |
|
25 | 28 | class Episode(object): |
@@ -503,14 +506,14 @@ def image(self, image): |
503 | 506 | def explicit(self): |
504 | 507 | """Whether this podcast episode contains material which may be |
505 | 508 | inappropriate for children. |
506 | | - |
| 509 | +
|
507 | 510 | The value of the podcast's explicit attribute is used by default, if |
508 | 511 | this is kept as ``None``. |
509 | 512 |
|
510 | 513 | If you set this to ``True``, an "explicit" parental advisory |
511 | | - graphic will appear in the Name column in iTunes. If the value is |
512 | | - ``False``, the parental advisory type is considered Clean, meaning that |
513 | | - no explicit language or adult content is included anywhere in this |
| 514 | + graphic will appear in the Name column in iTunes. If the value is |
| 515 | + ``False``, the parental advisory type is considered Clean, meaning that |
| 516 | + no explicit language or adult content is included anywhere in this |
514 | 517 | episode, and a "clean" graphic will appear. |
515 | 518 |
|
516 | 519 | :type: :obj:`bool` |
|
0 commit comments