Advertisement
Guest User

Untitled

a guest
Jan 27th, 2020
358
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.42 KB | None | 0 0
  1. [2020-01-27 14:58:56,503] ERROR in app: Exception on / [GET]
  2. Traceback (most recent call last):
  3. File "C:\Users\timmo\AppData\Local\Programs\Python\Python38\lib\site-packages\flask\app.py", line 2446, in wsgi_app
  4. response = self.full_dispatch_request()
  5. File "C:\Users\timmo\AppData\Local\Programs\Python\Python38\lib\site-packages\flask\app.py", line 1951, in full_dispatch_request
  6. rv = self.handle_user_exception(e)
  7. File "C:\Users\timmo\AppData\Local\Programs\Python\Python38\lib\site-packages\flask\app.py", line 1820, in handle_user_exception
  8. reraise(exc_type, exc_value, tb)
  9. File "C:\Users\timmo\AppData\Local\Programs\Python\Python38\lib\site-packages\flask\_compat.py", line 39, in reraise
  10. raise value
  11. File "C:\Users\timmo\AppData\Local\Programs\Python\Python38\lib\site-packages\flask\app.py", line 1949, in full_dispatch_request
  12. rv = self.dispatch_request()
  13. File "C:\Users\timmo\AppData\Local\Programs\Python\Python38\lib\site-packages\flask\app.py", line 1935, in dispatch_request
  14. return self.view_functions[rule.endpoint](**req.view_args)
  15. File "C:\Users\timmo\Documents\GitHub\MySite\myapp.py", line 7, in home
  16. return render_template('index.html')
  17. File "C:\Users\timmo\AppData\Local\Programs\Python\Python38\lib\site-packages\flask\templating.py", line 138, in render_template
  18. ctx.app.jinja_env.get_or_select_template(template_name_or_list),
  19. File "C:\Users\timmo\AppData\Local\Programs\Python\Python38\lib\site-packages\jinja2\environment.py", line 869, in get_or_select_template
  20. return self.get_template(template_name_or_list, parent, globals)
  21. File "C:\Users\timmo\AppData\Local\Programs\Python\Python38\lib\site-packages\jinja2\environment.py", line 830, in get_template
  22. return self._load_template(name, self.make_globals(globals))
  23. File "C:\Users\timmo\AppData\Local\Programs\Python\Python38\lib\site-packages\jinja2\environment.py", line 804, in _load_template
  24. template = self.loader.load(self, name, globals)
  25. File "C:\Users\timmo\AppData\Local\Programs\Python\Python38\lib\site-packages\jinja2\loaders.py", line 113, in load
  26. source, filename, uptodate = self.get_source(environment, name)
  27. File "C:\Users\timmo\AppData\Local\Programs\Python\Python38\lib\site-packages\flask\templating.py", line 60, in get_source
  28. return self._get_source_fast(environment, template)
  29. File "C:\Users\timmo\AppData\Local\Programs\Python\Python38\lib\site-packages\flask\templating.py", line 89, in _get_source_fast
  30. raise TemplateNotFound(template)
  31. jinja2.exceptions.TemplateNotFound: index.html
  32. Traceback (most recent call last):
  33. File "freeze.py", line 7, in <module>
  34. freezer.freeze()
  35. File "C:\Users\timmo\AppData\Local\Programs\Python\Python38\lib\site-packages\flask_frozen\__init__.py", line 199, in freeze
  36. return set(page.url for page in self.freeze_yield())
  37. File "C:\Users\timmo\AppData\Local\Programs\Python\Python38\lib\site-packages\flask_frozen\__init__.py", line 199, in <genexpr>
  38. return set(page.url for page in self.freeze_yield())
  39. File "C:\Users\timmo\AppData\Local\Programs\Python\Python38\lib\site-packages\flask_frozen\__init__.py", line 183, in freeze_yield
  40. new_filename = self._build_one(url)
  41. File "C:\Users\timmo\AppData\Local\Programs\Python\Python38\lib\site-packages\flask_frozen\__init__.py", line 321, in _build_one
  42. raise ValueError('Unexpected status %r on URL %s' \
  43. ValueError: Unexpected status '500 INTERNAL SERVER ERROR' on URL /
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement