spell check

This commit is contained in:
Adrian Sampson 2013-04-29 10:23:21 -07:00
parent a9d3ad65bf
commit dd8d4c16cc
4 changed files with 4 additions and 4 deletions

View file

@ -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

View file

@ -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

View file

@ -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

View file

@ -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')