mirror of
https://github.com/beetbox/beets.git
synced 2025-12-06 08:39:17 +01:00
Convert Python 2 URLs to Python 3
This commit is contained in:
parent
861504d5f6
commit
9519d47d57
4 changed files with 4 additions and 4 deletions
|
|
@ -13,7 +13,7 @@ str.format-style string formatting. So you can write logging calls like this:
|
||||||
|
|
||||||
.. _pep 3101: https://www.python.org/dev/peps/pep-3101/
|
.. _pep 3101: https://www.python.org/dev/peps/pep-3101/
|
||||||
|
|
||||||
.. _standard python logging module: https://docs.python.org/2/library/logging.html
|
.. _standard python logging module: https://docs.python.org/3/library/logging.html
|
||||||
|
|
||||||
When beets is in verbose mode, plugin messages are prefixed with the plugin name
|
When beets is in verbose mode, plugin messages are prefixed with the plugin name
|
||||||
to make them easier to see.
|
to make them easier to see.
|
||||||
|
|
|
||||||
|
|
@ -70,7 +70,7 @@ These options match the options from the `Python csv module`_.
|
||||||
|
|
||||||
.. _python csv module: https://docs.python.org/3/library/csv.html#csv-fmt-params
|
.. _python csv module: https://docs.python.org/3/library/csv.html#csv-fmt-params
|
||||||
|
|
||||||
.. _python json module: https://docs.python.org/2/library/json.html#basic-usage
|
.. _python json module: https://docs.python.org/3/library/json.html#basic-usage
|
||||||
|
|
||||||
The default options look like this:
|
The default options look like this:
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -123,4 +123,4 @@ until they are externally wiped could be an issue for privacy or storage
|
||||||
reasons. If this is the case for you, you might want to use the ``raw`` config
|
reasons. If this is the case for you, you might want to use the ``raw`` config
|
||||||
option described above.
|
option described above.
|
||||||
|
|
||||||
.. _tempfile.tempdir: https://docs.python.org/2/library/tempfile.html#tempfile.tempdir
|
.. _tempfile.tempdir: https://docs.python.org/3/library/tempfile.html#tempfile.tempdir
|
||||||
|
|
|
||||||
|
|
@ -376,7 +376,7 @@ terminal_encoding
|
||||||
~~~~~~~~~~~~~~~~~
|
~~~~~~~~~~~~~~~~~
|
||||||
|
|
||||||
The text encoding, as `known to Python
|
The text encoding, as `known to Python
|
||||||
<https://docs.python.org/2/library/codecs.html#standard-encodings>`__, to use
|
<https://docs.python.org/3/library/codecs.html#standard-encodings>`__, to use
|
||||||
for messages printed to the standard output. It's also used to read messages
|
for messages printed to the standard output. It's also used to read messages
|
||||||
from the standard input. By default, this is determined automatically from the
|
from the standard input. By default, this is determined automatically from the
|
||||||
locale environment variables.
|
locale environment variables.
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue