“RuntimeError: generator raised StopIteration” every time I try to run app
I am trying to run this code: import web urls = ( '/', 'index' ) if __name__ == "__main__": app = web.application(urls, globals()) app.run() But it gives me this error everytime C:\Users\aidke\Desktop>python app.py Traceback (most recent call last): File "C:\Users\aidke\AppData\Local\Programs\Python\Python37-32\lib\site-packages\web\utils.py", line 526, in take yield next(seq) StopIteration The above exception was the direct cause of the following exception: Traceback (most recent call last): File "app.py", line 14, in <module> app = web.application(urls, globals()) File "C:\Users\aidke