| 179 | |
| 180 | |
| 181 | def get_basic_beet_options(): |
| 182 | return ( |
| 183 | BL_NEED2.format("-l format-item", "-f -d 'print with custom format'") |
| 184 | + BL_NEED2.format("-l format-album", "-f -d 'print with custom format'") |
| 185 | + BL_NEED2.format( |
| 186 | "-s l -l library", "-F -r -d 'library database file to use'" |
| 187 | ) |
| 188 | + BL_NEED2.format( |
| 189 | "-s d -l directory", "-F -r -d 'destination music directory'" |
| 190 | ) |
| 191 | + BL_NEED2.format( |
| 192 | "-s v -l verbose", "-f -d 'print debugging information'" |
| 193 | ) |
| 194 | + BL_NEED2.format( |
| 195 | "-s c -l config", "-F -r -d 'path to configuration file'" |
| 196 | ) |
| 197 | + BL_NEED2.format( |
| 198 | "-s h -l help", "-f -d 'print this help message and exit'" |
| 199 | ) |
| 200 | ) |
| 201 | |
| 202 | |
| 203 | def get_subcommands(cmd_name_and_help, nobasicfields, extravalues): |