From 0e374cd5e0ef5a9be67084365f91de2ab84f636c Mon Sep 17 00:00:00 2001 From: Alexis Metaireau Date: Wed, 28 Jun 2017 21:36:02 +0200 Subject: Make all imports relative (#229) * Make all imports relative * Change the way the application runs in the Makefile * Import the default settings relatively * Fix manage.py imports --- budget/forms.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'budget/forms.py') diff --git a/budget/forms.py b/budget/forms.py index 06df743..bd7fc5b 100644 --- a/budget/forms.py +++ b/budget/forms.py @@ -7,10 +7,11 @@ from flask_babel import lazy_gettext as _ from flask import request from wtforms.widgets import html_params -from models import Project, Person from datetime import datetime from jinja2 import Markup -from utils import slugify + +from .models import Project, Person +from .utils import slugify def get_billform_for(project, set_default=True, **kwargs): """Return an instance of BillForm configured for a particular project. -- cgit v1.1