mirror of
https://github.com/KevinMidboe/spotify-downloader.git
synced 2025-10-29 18:00:15 +00:00
Making variables more verbose
This commit is contained in:
@@ -244,9 +244,9 @@ def graceQuit():
|
|||||||
exit()
|
exit()
|
||||||
|
|
||||||
while True:
|
while True:
|
||||||
for m in os.listdir('Music/'):
|
for temp in os.listdir('Music/'):
|
||||||
if m.endswith('.m4a.temp'):
|
if temp.endswith('.m4a.temp'):
|
||||||
os.remove('Music/' + m)
|
os.remove('Music/' + temp)
|
||||||
print('')
|
print('')
|
||||||
try:
|
try:
|
||||||
command = raw_input('>> Enter a song/cmd: ')
|
command = raw_input('>> Enter a song/cmd: ')
|
||||||
|
|||||||
Reference in New Issue
Block a user