Cleanup in resources

This commit is contained in:
Nikolaj Danger
2020-03-24 15:49:31 +01:00
parent 780e32fcc6
commit b2a47ce11a
16 changed files with 23 additions and 25 deletions

View File

@ -7,7 +7,7 @@ def movieFunc():
ia = imdb.IMDb()
print("Picking a movie")
movs = open("funcs/other/movies.txt", "r")
movs = open("resources/movies.txt", "r")
movlist = movs.read().split("\n")
mov = random.choice(movlist)
movs.close()