diff options
author | Justin Mayer <entroP@gmail.com> | 2019-08-23 19:02:48 +0200 |
---|---|---|
committer | Justin Mayer <entroP@gmail.com> | 2019-08-23 19:02:48 +0200 |
commit | f6ef0270144b96863ae9811edbc802c56091a2a3 (patch) | |
tree | 765ba9141f6f943a5b6f226ac9402241e4044900 | |
parent | 9db42658e50254bf72b0f9a16755bb631f601b6c (diff) | |
download | pelican-f6ef0270144b96863ae9811edbc802c56091a2a3.tar.gz |
Tidy and shorten a comment
-rw-r--r-- | pelican/contents.py | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/pelican/contents.py b/pelican/contents.py index 74524d60..a862db2d 100644 --- a/pelican/contents.py +++ b/pelican/contents.py @@ -141,8 +141,7 @@ class Content(object): # manage status if not hasattr(self, 'status'): - # using None as the default here breaks comment plugins (and - # probably others) + # Previous default of None broke comment plugins and perhaps others self.status = getattr(self, 'default_status', '') # store the summary metadata if it is set |