From c88a09ddea35426157f743a19bc7410af50272fa Mon Sep 17 00:00:00 2001 From: SpiritQuaddicted Date: Fri, 19 Apr 2024 17:59:25 +0200 Subject: [PATCH] Remove rogue comma in cachelib example --- docs/usage.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/usage.rst b/docs/usage.rst index 675d9e9e..86cba845 100644 --- a/docs/usage.rst +++ b/docs/usage.rst @@ -84,6 +84,6 @@ The following example demonstrates how to use CacheLib as a session backend with SESSION_TYPE = 'cachelib' SESSION_SERIALIZATION_FORMAT = 'json' - SESSION_CACHELIB = FileSystemCache(threshold=500, cache_dir="/sessions"), + SESSION_CACHELIB = FileSystemCache(threshold=500, cache_dir="/sessions") app.config.from_object(__name__) Session(app) \ No newline at end of file