From: Ɓukasz Rekucki Date: Thu, 25 Feb 2010 10:37:39 +0000 (+0100) Subject: Poprawiony regexp. Fixes #371 X-Git-Url: https://git.mdrn.pl/redakcja.git/commitdiff_plain/7a243e479fd923d27ed69f2085ea2117d37977b2 Poprawiony regexp. Fixes #371 --- 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