From f6e54738dd2d0458976bb422e7f8f4b210dd2165 Mon Sep 17 00:00:00 2001 From: Martin Mahner Date: Thu, 19 Jan 2017 12:38:56 +0100 Subject: [PATCH] Removed mptt from installation docs. --- docs/integration.rst | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/docs/integration.rst b/docs/integration.rst index 287be49..c89dc9f 100644 --- a/docs/integration.rst +++ b/docs/integration.rst @@ -10,14 +10,12 @@ necessary dependencies of dpaste as well:: pip install dpaste -Add ``dpaste`` and ``mptt`` to your ``INSTALLED_APPS``:: +Add ``dpaste`` to your ``INSTALLED_APPS``:: INSTALLED_APPS = ( 'django.contrib.sessions', 'django.contrib.staticfiles', # ... - - 'mptt', 'dpaste', )