Unnecessary log and comment

This commit is contained in:
shortcutme 2017-03-06 15:30:42 +01:00
parent 50937990e5
commit 909b9da9da
No known key found for this signature in database
GPG key ID: 5B63BAE6CB9613AE
2 changed files with 2 additions and 2 deletions

View file

@ -77,7 +77,7 @@ class SiteStorage(object):
def getDbFiles(self):
for content_inner_path, content in self.site.content_manager.contents.iteritems():
# content.json file itself
if self.isFile(content_inner_path): # Missing content.json file
if self.isFile(content_inner_path):
yield content_inner_path, self.open(content_inner_path)
else:
self.log.error("[MISSING] %s" % content_inner_path)