mirror of
https://github.com/beetbox/beets.git
synced 2025-12-14 20:43:41 +01:00
fix "import -l logpath" CLI option (GC-518)
This commit is contained in:
parent
7a1a7d035f
commit
0366dc8184
2 changed files with 2 additions and 1 deletions
|
|
@ -702,7 +702,7 @@ import_cmd.parser.add_option('-P', '--noresume', action='store_false',
|
|||
dest='resume', help="do not try to resume importing")
|
||||
import_cmd.parser.add_option('-q', '--quiet', action='store_true',
|
||||
dest='quiet', help="never prompt for input: skip albums instead")
|
||||
import_cmd.parser.add_option('-l', '--log', dest='logpath',
|
||||
import_cmd.parser.add_option('-l', '--log', dest='log',
|
||||
help='file to log untaggable albums for later review')
|
||||
import_cmd.parser.add_option('-s', '--singletons', action='store_true',
|
||||
help='import individual tracks instead of full albums')
|
||||
|
|
|
|||
|
|
@ -95,6 +95,7 @@ Other new stuff:
|
|||
* Fix an error when migrating the ``.beetsstate`` file on Windows.
|
||||
* A nicer error message is now given when the configuration file contains tabs.
|
||||
(YAML doesn't like tabs.)
|
||||
* Fix the ``-l`` (log path) command-line option for the ``import`` command.
|
||||
|
||||
.. _iTunes Sound Check: http://support.apple.com/kb/HT2425
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue