From 7a243e479fd923d27ed69f2085ea2117d37977b2 Mon Sep 17 00:00:00 2001 From: =?utf8?q?=C5=81ukasz=20Rekucki?= Date: Thu, 25 Feb 2010 11:37:39 +0100 Subject: [PATCH] Poprawiony regexp. Fixes #371 --- apps/wiki/models.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/wiki/models.py b/apps/wiki/models.py index 7693da4e..7b0f8edc 100644 --- a/apps/wiki/models.py +++ b/apps/wiki/models.py @@ -29,7 +29,7 @@ class DocumentStorage(object): class Document(object): - META_REGEX = re.compile(r'\s*', re.DOTALL | re.MULTILINE) + META_REGEX = re.compile(r'\s*', re.DOTALL | re.MULTILINE) def __init__(self, storage, **kwargs): self.storage = storage -- 2.20.1