aboutsummaryrefslogtreecommitdiffstats
path: root/mediagoblin/tools/request.py
diff options
context:
space:
mode:
authorSebastian Spaeth <Sebastian@SSpaeth.de>2012-12-25 20:52:25 +0100
committerSebastian Spaeth <Sebastian@SSpaeth.de>2012-12-25 20:52:25 +0100
commit71717fd5316607500159f782b10ca91cf9684bfd (patch)
tree2a8503e3fae088564b0934abf10309cf108f3c22 /mediagoblin/tools/request.py
parentc338ed34fa30d84660bac4f275f73d8f2f6c902e (diff)
downloadmediagoblin-71717fd5316607500159f782b10ca91cf9684bfd.tar.lz
mediagoblin-71717fd5316607500159f782b10ca91cf9684bfd.tar.xz
mediagoblin-71717fd5316607500159f782b10ca91cf9684bfd.zip
Remove ObjectId from the tree
This was one of the last remaining Mongo holdouts and has been removed from the tree herewith. Good bye, ObjectId. Signed-off-by: Sebastian Spaeth <Sebastian@SSpaeth.de>
Diffstat (limited to 'mediagoblin/tools/request.py')
-rw-r--r--mediagoblin/tools/request.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/mediagoblin/tools/request.py b/mediagoblin/tools/request.py
index a58d919d..f40ab360 100644
--- a/mediagoblin/tools/request.py
+++ b/mediagoblin/tools/request.py
@@ -15,7 +15,7 @@
# along with this program. If not, see <http://www.gnu.org/licenses/>.
import logging
-from mediagoblin.db.util import ObjectId
+from mediagoblin.db.sql.models import User
_log = logging.getLogger(__name__)