Skip to content

4.1.1 Bug Fixes

Compare
Choose a tag to compare
@KaiserWilhelm23 KaiserWilhelm23 released this 05 Feb 15:57
· 52 commits to main since this release
959304f

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