Browse Source

Merge pull request #579 from Moini/patch-1

Add commas indicating tuple to example
Justin Mayer 9 years ago
parent
commit
8ff5d59607
1 changed files with 2 additions and 2 deletions
  1. 2 2
      pelican_comment_system/doc/avatars.md

+ 2 - 2
pelican_comment_system/doc/avatars.md

@@ -17,8 +17,8 @@ The `value` of the dictionary is the path to the specific avatar.
 ##### Example
 ```python
 PELICAN_COMMENT_SYSTEM_AUTHORS = {
-	('John'): "images/authors/john.png",
-	('Tom'): "images/authors/tom.png",
+	('John',): "images/authors/john.png",
+	('Tom',): "images/authors/tom.png",
 }
 ```