update docs for #619

This commit is contained in:
Adrian Sampson 2014-03-19 10:34:03 -07:00
parent 51647e6514
commit b0fd64662d
2 changed files with 3 additions and 1 deletions

View file

@ -51,7 +51,8 @@ Fixes:
be written to a file.
* :doc:`/plugins/duplicates`: Spurious reports are now avoided for tracks with
missing values (e.g., no MBIDs). Thanks to Pedro Silva.
* Fix default :ref:`replace` value so leading whitespace are also removed.
* The default :ref:`replace` sanitation options now remove leading whitespace
by default. Thanks to brilnius.
* :doc:`/plugins/importfeeds`: Fix crash when importing albums
containing ``/`` with the ``m3u_multi`` format.

View file

@ -110,6 +110,7 @@ unexpected behavior on all popular platforms::
'[<>:"\?\*\|]': _
'\.$': _
'\s+$': ''
'^\s+': ''
These substitutions remove forward and back slashes, leading dots, and
control characters—all of which is a good idea on any OS. The fourth line