[Cleanup] Make sure to ignore Python cache

This commit is contained in:
Gergely Polonkai 2018-06-29 09:04:24 +02:00
parent a4f26ce867
commit bed00e45f6
2 changed files with 2 additions and 0 deletions

1
.gitignore vendored Normal file
View File

@ -0,0 +1 @@
__pycache__/

View File

@ -24,6 +24,7 @@ class CalendarSocialApp(Flask):
app = CalendarSocialApp(__name__)
@app.route('/')
def hello():
return render_template('index.html')