mirror of
https://github.com/beetbox/beets.git
synced 2026-02-21 23:03:26 +01:00
spell check
This commit is contained in:
parent
a9d3ad65bf
commit
dd8d4c16cc
4 changed files with 4 additions and 4 deletions
|
|
@ -104,7 +104,7 @@ def im_resize(maxwidth, path_in, path_out=None):
|
|||
# "-resize widthxheight>" shrinks images with dimension(s) larger
|
||||
# than the corresponding width and/or height dimension(s). The >
|
||||
# "only shrink" flag is prefixed by ^ escape char for Windows
|
||||
# compatability.
|
||||
# compatibility.
|
||||
call([
|
||||
'convert', util.syspath(path_in),
|
||||
'-resize', '{0}x^>'.format(maxwidth), path_out
|
||||
|
|
|
|||
|
|
@ -51,7 +51,7 @@ class WaitableEvent(Event):
|
|||
return (), (), ()
|
||||
|
||||
def fire(self):
|
||||
"""Called when an assoicated file descriptor becomes ready
|
||||
"""Called when an associated file descriptor becomes ready
|
||||
(i.e., is returned from a select() call).
|
||||
"""
|
||||
pass
|
||||
|
|
|
|||
|
|
@ -667,7 +667,7 @@ class Configuration(RootView):
|
|||
"""
|
||||
dirs = list(self._search_dirs())
|
||||
|
||||
# First, look for an existant configuration file.
|
||||
# First, look for an existent configuration file.
|
||||
for appdir in dirs:
|
||||
if os.path.isfile(os.path.join(appdir, CONFIG_FILENAME)):
|
||||
return appdir
|
||||
|
|
|
|||
|
|
@ -189,7 +189,7 @@ class ConvertPlugin(BeetsPlugin):
|
|||
help='choose albums instead of tracks')
|
||||
cmd.parser.add_option('-t', '--threads', action='store', type='int',
|
||||
help='change the number of threads, \
|
||||
defaults to maximum availble processors ')
|
||||
defaults to maximum available processors')
|
||||
cmd.parser.add_option('-k', '--keep-new', action='store_true',
|
||||
dest='keep_new', help='keep only the converted \
|
||||
and move the old files')
|
||||
|
|
|
|||
Loading…
Reference in a new issue