Bladeren bron

Add commas indicating tuple to example

Added commas to indicate a tuple in the example. 
Without them, loading of known author avatar will fail.
Moini 9 jaren geleden
bovenliggende
commit
605672c45e
1 gewijzigde bestanden met toevoegingen van 2 en 2 verwijderingen
  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",
 }
 ```