diff options
author | Elrond <elrond+mediagoblin.org@samba-tng.org> | 2011-05-18 00:44:10 +0200 |
---|---|---|
committer | Elrond <elrond+mediagoblin.org@samba-tng.org> | 2011-05-18 00:44:10 +0200 |
commit | 0f18ed8f5e179326721221df93734864074bc185 (patch) | |
tree | c6d2c610fdb5166c89eee74ad2224d1bf36c5c58 /mediagoblin/views.py | |
parent | 931f318cbc571419510b1ad37298c981df2f16b0 (diff) | |
download | mediagoblin-0f18ed8f5e179326721221df93734864074bc185.tar.lz mediagoblin-0f18ed8f5e179326721221df93734864074bc185.tar.xz mediagoblin-0f18ed8f5e179326721221df93734864074bc185.zip |
Move models into new db/ directory
The database is a central point of interest/discussion.
Represent that by its own directory.
This will surely become more interesting when we have
migrations for example.
Diffstat (limited to 'mediagoblin/views.py')
-rw-r--r-- | mediagoblin/views.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mediagoblin/views.py b/mediagoblin/views.py index 602f1098..60d34908 100644 --- a/mediagoblin/views.py +++ b/mediagoblin/views.py @@ -20,7 +20,7 @@ from webob import Response, exc import wtforms from pymongo import DESCENDING from mongokit import ObjectId -from mediagoblin import models +from mediagoblin.db import models import gettext def root_view(request): |