diff options
| author | 2012-12-12 20:15:48 -0300 | |
|---|---|---|
| committer | 2012-12-12 20:15:48 -0300 | |
| commit | 0f2c04e70a0ffdd0892d6970cafbcd952d221db5 (patch) | |
| tree | d36f7747c4b9cb5c5e00cae5b137d22214b1c7be /nikola/post.py | |
| parent | ca1f5a392261a7c6b82b5ac1015427605909d8c9 (diff) | |
Imported Upstream version 5upstream/5
Diffstat (limited to 'nikola/post.py')
| -rw-r--r-- | nikola/post.py | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/nikola/post.py b/nikola/post.py index 9b2d73f..f4b0a0e 100644 --- a/nikola/post.py +++ b/nikola/post.py @@ -15,7 +15,7 @@ class Post(object): """Represents a blog post or web page.""" def __init__(self, source_path, destination, use_in_feeds, - translations, default_lang, blog_url, compile_html, messages): + translations, default_lang, blog_url, messages): """Initialize post. The base path is the .txt post file. From it we calculate @@ -63,8 +63,6 @@ class Post(object): self.is_draft = 'draft' in self.tags self.tags = [t for t in self.tags if t != 'draft'] - self.compile_html = compile_html - self.pagenames = {} self.titles = {} self.descriptions = {} |
