Making variables more verbose

This commit is contained in:
Ritiek Malhotra
2017-05-03 10:03:54 +05:30
committed by GitHub
parent f0ef0f661f
commit c4f8b50358

View File

@@ -244,9 +244,9 @@ def graceQuit():
exit()
while True:
for m in os.listdir('Music/'):
if m.endswith('.m4a.temp'):
os.remove('Music/' + m)
for temp in os.listdir('Music/'):
if temp.endswith('.m4a.temp'):
os.remove('Music/' + temp)
print('')
try:
command = raw_input('>> Enter a song/cmd: ')