From 4efd15ed70346f84c9eb4ad241d555e1e92fd122 Mon Sep 17 00:00:00 2001 From: Footsiefat <12180913+Footsiefat@users.noreply.github.com> Date: Tue, 19 Oct 2021 20:16:25 +1300 Subject: [PATCH] Fixed some tiny spelling erorrs --- zspotify.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/zspotify.py b/zspotify.py index f91b8ecb..877c588d 100644 --- a/zspotify.py +++ b/zspotify.py @@ -82,7 +82,7 @@ def login(): def client(): - """ Connects to spotify to perform querys and get songs to download """ + """ Connects to spotify to perform query's and get songs to download """ global QUALITY, SESSION splash() @@ -444,7 +444,7 @@ def download_track(track_id_str: str, extra_paths=""): with open(filename, 'wb') as file: while True: - # Trys to read exactly 128kb at a time to be more efficient now + # Try's to read exactly 128kb at a time to be more efficient now byte = stream.input_stream.stream().read(1024 * 128) if byte == b'': break