diff options
| author | Thibaut Horel <thibaut.horel@gmail.com> | 2015-03-23 14:18:59 -0400 |
|---|---|---|
| committer | Thibaut Horel <thibaut.horel@gmail.com> | 2015-03-23 14:18:59 -0400 |
| commit | 61df9a08182cf9b0b52c240603dede0ab6ab741b (patch) | |
| tree | d49bfc062023e750d374bd17cf2e254ca92b2b50 | |
| parent | 2bfa28a8198f5d38c71716efa37414d70ffb83d4 (diff) | |
| download | wedding-website-61df9a08182cf9b0b52c240603dede0ab6ab741b.tar.gz | |
Fix missing import
| -rw-r--r-- | wedding.py | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -4,6 +4,7 @@ import sqlite3 from flask import Flask, request, session, g, redirect, url_for, render_template from flask import flash from functools import wraps +from collections import defaultdict app = Flask(__name__) app.config.from_envvar('CONF') |
