Poprawiony regexp. Fixes #371
authorŁukasz Rekucki <lrekucki@gmail.com>
Thu, 25 Feb 2010 10:37:39 +0000 (11:37 +0100)
committerŁukasz Rekucki <lrekucki@gmail.com>
Thu, 25 Feb 2010 10:37:39 +0000 (11:37 +0100)
apps/wiki/models.py

index 7693da4..7b0f8ed 100644 (file)
@@ -29,7 +29,7 @@ class DocumentStorage(object):
 
 
 class Document(object):
-    META_REGEX = re.compile(r'\s*<!--\s(.*?)\s-->', re.DOTALL | re.MULTILINE)
+    META_REGEX = re.compile(r'\s*<!--\s(.*?)-->', re.DOTALL | re.MULTILINE)
     
     def __init__(self, storage, **kwargs):
         self.storage = storage