4.1.1 Bug Fixes
added lines 632-639:
try:
file = open('output.txt', 'r')
except:
print("Cannot find file :/")
with open('output.txt', 'w') as f:
f.write('')
file = open('output.txt', 'r')
Fixes error No file named output.txt found