summaryrefslogtreecommitdiff
path: root/docs/tutorials
diff options
context:
space:
mode:
authorSteve Piercy <web@stevepiercy.com>2016-04-09 13:59:18 -0700
committerSteve Piercy <web@stevepiercy.com>2016-04-09 13:59:18 -0700
commit638b920fe3458f52ce92964d7b947f2ecceb3673 (patch)
treec24073cb7cfd184b0a6737fb8e5b7a87b332b76d /docs/tutorials
parent0b51f1ff87f3ca53ab8d24caca5a8ea8abe857c1 (diff)
downloadpyramid-638b920fe3458f52ce92964d7b947f2ecceb3673.tar.gz
pyramid-638b920fe3458f52ce92964d7b947f2ecceb3673.tar.bz2
pyramid-638b920fe3458f52ce92964d7b947f2ecceb3673.zip
- fix straggler from wiki2/src/views/tutorial/tests.py
Diffstat (limited to 'docs/tutorials')
-rw-r--r--docs/tutorials/wiki2/src/views/tutorial/tests.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/tutorials/wiki2/src/views/tutorial/tests.py b/docs/tutorials/wiki2/src/views/tutorial/tests.py
index c54945c28..99e95efd3 100644
--- a/docs/tutorials/wiki2/src/views/tutorial/tests.py
+++ b/docs/tutorials/wiki2/src/views/tutorial/tests.py
@@ -28,7 +28,7 @@ class BaseTest(unittest.TestCase):
self.session = get_tm_session(session_factory, transaction.manager)
def init_database(self):
- from .models import Base
+ from .models.meta import Base
Base.metadata.create_all(self.engine)
def tearDown(self):