From bfc2ee7dfdfdb5fd68be208babd896f93194b7b4 Mon Sep 17 00:00:00 2001 From: trirpi Date: Fri, 16 Jun 2017 21:15:33 +0200 Subject: [PATCH] removed bug in memory sqlite uri --- docs/config.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/config.rst b/docs/config.rst index 186a3695..7280fae2 100644 --- a/docs/config.rst +++ b/docs/config.rst @@ -475,7 +475,7 @@ configuration:: class Config(object): DEBUG = False TESTING = False - DATABASE_URI = 'sqlite://:memory:' + DATABASE_URI = 'sqlite:///:memory:' class ProductionConfig(Config): DATABASE_URI = 'mysql://user@localhost/foo'