Fix some deprecation warnings with newer flask version

This commit is contained in:
Chase Sterling 2016-07-14 17:59:08 -04:00
parent a22e99bf9b
commit 36d3fb7215
12 changed files with 15 additions and 14 deletions

View file

@ -1,4 +1,4 @@
from flask.ext.sqlalchemy import DeclarativeMeta
from flask_sqlalchemy import DeclarativeMeta
from functools import wraps

View file

@ -1,7 +1,7 @@
import os
import shutil
import tempfile
from flask.ext.testing import TestCase
from flask_testing import TestCase
from realms.lib.util import random_string
from realms import create_app