Skip to content

Commit

Permalink
fixed small typo
Browse files Browse the repository at this point in the history
  • Loading branch information
sh4dow committed May 28, 2022
1 parent abb9d0e commit 841edcd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion downloader.py
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ def download():
output.update()
return_code = process.poll()
if return_code is not None:
for output in process.stdout.readlines():
for out in process.stdout.readlines():
#print(out.strip())
output.insert(tk.END,out)
break
Expand Down

0 comments on commit 841edcd

Please sign in to comment.