From 23564c14f98f8b3694abbb50eb27ce54f829905d Mon Sep 17 00:00:00 2001 From: Matthew Tavares Date: Thu, 14 May 2015 10:24:00 -0500 Subject: [PATCH] Fixed for spelling "writable" --- headphones/postprocessor.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/headphones/postprocessor.py b/headphones/postprocessor.py index d6df01c7..61c40cd0 100755 --- a/headphones/postprocessor.py +++ b/headphones/postprocessor.py @@ -307,7 +307,7 @@ def doPostProcessing(albumid, albumpath, release, tracks, downloaded_track_list, if any(files.lower().endswith('.' + x.lower()) for x in headphones.MEDIA_FORMATS): downloaded_track_list.append(os.path.join(r, files)) - # Check if files are valid media files and are writeable, before the steps + # Check if files are valid media files and are writable, before the steps # below are executed. This simplifies errors and prevents unfinished steps. for downloaded_track in downloaded_track_list: try: @@ -337,7 +337,7 @@ def doPostProcessing(albumid, albumpath, release, tracks, downloaded_track_list, fp.seek(0) except IOError as e: logger.debug("Write check exact error: %s", e) - logger.error("Track file is not writeable. This is required " \ + logger.error("Track file is not writable. This is required " \ "for some post processing steps: %s. Not continuing.", downloaded_track.decode(headphones.SYS_ENCODING, "replace")) return